Hi Isomorphic,
please see this filter editor field width issue (v12.0p_2019-06-12, online sample):
If you reorder the remove field, width of fields and filter-fields no longer match.
It does not happen without leaveScrollbarGap: false.
In my application (12.0p, late March 2019) I do have this error as well, but way more often, even for some simple field-resize.

Best regards
Blama
please see this filter editor field width issue (v12.0p_2019-06-12, online sample):
Code:
isc.ListGrid.create({
ID: "countryList",
width:750, height:224, alternateRecordStyles:true,
headerHeight: 65,
dataSource: countryDS,
autoFetchData: true, canRemoveRecords:true, showFilterEditor:true, leaveScrollbarGap: false,
fields:[
{name:"countryCode", title:"Flag", width:50, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png"},
{name:"countryName", title:"Country"},
{name:"capital"},
{name:"government"},
{name:"independence", title:"Nationhood", width:100},
{name:"population", title:"Population"},
{name:"area", title:"Area (km²)"},
{name:"gdp"}
],
initialCriteria: { _constructor: "AdvancedCriteria", operator: "and",
criteria: [
{ fieldName: "countryName", operator: "iContains", value: "United" },
]
},
headerSpans: [
{
fields: ["countryCode", "countryName"],
title: "Identification"
},
{
fields: ["capital", "government", "independence"],
title: "Government & Politics"
},
{
fields: ["population", "area", "gdp"],
title: "Demographics"
}
]
})
It does not happen without leaveScrollbarGap: false.
In my application (12.0p, late March 2019) I do have this error as well, but way more often, even for some simple field-resize.
Best regards
Blama
Comment