Hi Isomorphic,
please see this modified sample (v11.1p_2018-11-01, also happening in older nightlys, tested with GC 69):
If you try to resize any column but the 1st one to be *bigger*, all extra space from the 1st one is directly assigned to the one you are resizing (=two columns are resized, while I wanted to resize one).
This does not happen if you first resize it to be smaller.
Best regards
Blama
please see this modified sample (v11.1p_2018-11-01, also happening in older nightlys, tested with GC 69):
Code:
isc.ListGrid.create({ ID: "grid2", autoFitWidthApproach: "both", autoFitFieldWidths: true, width: "100%", height: 500, dataSource: "worldDS", autoFetchData: true, fields: [ { name:"countryCode", title:"Code"}, { name:"member_g8", title:"G8"}, { name:"countryName", title:"Country"}, { name:"area", title:"Area (km²)" }, { name:"population", title:"Population"}, { name:"gdp", title:"GDP ($M)"} ] });
This does not happen if you first resize it to be smaller.
Best regards
Blama
Comment