Summary
MDL currently does not support the Filterable property on COLUMN definitions
inside a DATAGRID (DataGrid2 pluggable widget). This means column-level filters
cannot be configured via MDL, forcing users to work around the limitation.
Current Behavior
When defining a DATAGRID with COLUMN entries in MDL, there is no way to set
Filterable: true on individual columns. The property is silently ignored or
not recognized.
Example of what is not currently possible in MDL:
DATAGRID {
Entity: MyModule.Order,
COLUMN OrderNumber {
Attribute: OrderNumber,
Filterable: true -- ❌ not supported, MDL ignores this
},
COLUMN Status {
Attribute: Status,
Filterable: true -- ❌ not supported
}
}
Summary
MDL currently does not support the
Filterableproperty onCOLUMNdefinitionsinside a
DATAGRID(DataGrid2 pluggable widget). This means column-level filterscannot be configured via MDL, forcing users to work around the limitation.
Current Behavior
When defining a
DATAGRIDwithCOLUMNentries in MDL, there is no way to setFilterable: trueon individual columns. The property is silently ignored ornot recognized.
Example of what is not currently possible in MDL: