Hi Isomorphic,
please see this sample (v11.1p_2018-08-11, v12.0p_2018-08-11) and modify as follows:
As you can see, the field width of the fields in the filter row does not match the width of the fields in the ListGrid body.
This is fixed in both cases (filterRow shown from start or enabled afterwards) only after arrival of data.
I do see this issue in my 11.1p application as well.
Best regards
Blama
please see this sample (v11.1p_2018-08-11, v12.0p_2018-08-11) and modify as follows:
Code:
isc.IButton.create({ width: 200, title: "Show/Hide FilterRow", click: "countryList.setShowFilterEditor(!countryList.showFilterEditor);" }); isc.IButton.create({ left: 250, width: 200, title: "invalidateCache to repair", click: "countryList.invalidateCache();" }); isc.ListGrid.create({ top: 50, ID: "countryList", width:1000, height:300, alternateRecordStyles:true, dataSource: worldDS, autoFetchData: true, showFilterEditor: false }); isc.IButton.create({ top: 450, width: 200, title: "fetchData to repair", click: "countryList2.fetchData();" }); isc.ListGrid.create({ top: 500, ID: "countryList2", width:1000, height:300, alternateRecordStyles:true, dataSource: worldDS, autoFetchData: false, showFilterEditor: true });
This is fixed in both cases (filterRow shown from start or enabled afterwards) only after arrival of data.
I do see this issue in my 11.1p application as well.
Best regards
Blama
Comment