In the SC9 feature explorer
http://smartclient.com/docs/9.0/a/system/reference/SmartClient_Explorer.html#columnSize
update the code to set the listgrid width and height to 100%
When you 'try it', resize your browser window to observe the column widths resize with the grid. Then drag resize one of the columns. After this, all the column widths become fixed and do not resize as the browser window is resized.
This is a regression since SC8.3. Is there a fix/setting I can use to make sure only the drag resized column width becomes fixed?
regards,
Colin.
http://smartclient.com/docs/9.0/a/system/reference/SmartClient_Explorer.html#columnSize
update the code to set the listgrid width and height to 100%
Code:
isc.ListGrid.create({ ID: "countryList", width:"100%", height:"100%", alternateRecordStyles:true, data: countryData, fields:[ {name:"countryCode", title:"Flag", width:50, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png"}, {name:"countryName", title:"Country"}, {name:"capital", title:"Capital"}, {name:"continent", title:"Continent"} ], canResizeFields: true })
This is a regression since SC8.3. Is there a fix/setting I can use to make sure only the drag resized column width becomes fixed?
regards,
Colin.
Comment