Hi Isomorphic,
please see this modified sample (v11.1p_2018-01-31):
Issues:
Best regards
Blama
please see this modified sample (v11.1p_2018-01-31):
Code:
isc.ListGrid.create({ ID:"dsListGrid", autoFetchData: true, dataSource: "supplyItem", groupByField: "category", sortByGroupFirst: true, sortField: "itemName", groupByMaxRecords: 4000, hilites: [ { cssText: "color:#FF0000;", criteria: { fieldName: "unitCost", operator: "lessThan", value: 5 } }] }); isc.IButton.create({ ID: "Button", title:"Show/Hide Filter", click:"dsListGrid.setShowFilterEditor(!dsListGrid.showFilterEditor)" }); isc.VLayout.create({ width: "100%", height: "50%", membersMargin: 15, members: [ dsListGrid, Button] });
- On show filter, "Grouping data" is shown for some time. Hide filter on the other hand does not trigger "Grouping data", so I assume it should always be possible without this.
- On button click the grouping row changes its height. On 1st hover, it changes it back. This might be related to this closed 11.1d(!) issue.
- If filter hidden and hovering the grouping row, it gets red (from the Hilite). If the Hilite applies (I think it does), it should apply directly. This might be related to this issue I posted yesterday.
Best regards
Blama
Comment