Filter by label (Content by label) |
---|
showLabels | false |
---|
max | 5 |
---|
spaces | TU |
---|
showSpace | false |
---|
sort | modified |
---|
reverse | true |
---|
type | page |
---|
cql | label in ("header-controls","kb-how-to-article") and type = "page" and space = "TU" |
---|
labels | kb-how-to-article header-controls |
---|
|
...
...
Image RemovedImage Removed
Tip |
---|
|
In AX the header is specified in the class Mob_GetReferenceData. The most commonly used method is addDefaultWarehouseElement(..) but there is multiple used.. Alternative use addHeaderConfigurationElement(..) with type #InputTypeList. You must specify a datatable to use. The valid values must either be specified by a list or as a reference to a datatable. The datatable is also created in class Mob_GetReferenceData, look at addWarehouse2ReferenceData(..) - called from process(..), the method created a list with data - ready to be used in the controls in Mobile WMS. Code Block |
---|
language | c# |
---|
title | Mob_GetReferenceData.addDefaultOrderFilter(..) |
---|
linenumbers | true |
---|
collapse | true |
---|
| void addDefaultOrderFilter(XmlElement linesElement)
{
// List with warehouses
this.addDefaultWarehouseElement(linesElement, 1, #ReferenceDataTable_WarehouseFilterList);
// Delivery date control
this.addDefaultDeliveryDateElement(linesElement, 2);
} |
|
...
Related articles