SmartClient Version: SNAPSHOT_v11.1d_2017-03-03/Enterprise Development Only (built 2017-03-03)
Chrome on OSX
Hello, please modify the dynamicGrouping sample like this (I've just added autoFitWidth: true to the first column):
You'll see that the group title doesn't show, unless you resize some column.
Chrome on OSX
Hello, please modify the dynamicGrouping sample like this (I've just added autoFitWidth: true to the first column):
Code:
isc.ListGrid.create({
ID: "countryList",
width:522, height:224,
alternateRecordStyles:true,
dataSource: countryDS,
// display a subset of fields from the datasource
fields:[
{name:"countryName", autoFitWidth: true},
{name:"government"},
{name:"continent"},
{name:"countryCode", title:"Flag", width:40, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png", canEdit:false}
],
groupStartOpen:"all",
groupByField: 'continent',
autoFetchData: true
})
Comment