Hi there,
When editing a listgridfield and changing the sorting of a column, the specific column gets wider each time the direction is changed.
This only happens in the latest release of Chrome (Version 53.0.2785.143 m). In Firefox and Internet Explorer it works like expected.
It's reproducable in the latest nightly (SmartClient_v110p_2016-10-05_Pro).
Example:
Code for reproduction:
Best regards
When editing a listgridfield and changing the sorting of a column, the specific column gets wider each time the direction is changed.
This only happens in the latest release of Chrome (Version 53.0.2785.143 m). In Firefox and Internet Explorer it works like expected.
It's reproducable in the latest nightly (SmartClient_v110p_2016-10-05_Pro).
Example:
Code for reproduction:
Code:
isc.ListGrid.create({ "ID" : "demoListGrid", "canEdit" : true, "width" : 400, "height" : 100, "fields" : [{ "name" : "demoNameField", "title" : "Country", "type" : "text", "width" : 150, "canEdit" : false }, { "name" : "demoNumberField1", "title" : "Title 1", "width" : 70, "type" : "text", "canEdit" : true, "autoFitWidth" : true }, { "name" : "demoNumberField2", "title" : "Title 2", "width" : 70, "type" : "text", "canEdit" : true, "autoFitWidth" : true } ], "data" : [{ "demoNumberField1" : 0, "demoNumberField2" : 0, "demoNameField" : "Belgium (BEL)", } ] })
Comment