SmartClient Version: SNAPSHOT_v11.1d_2017-05-10/Enterprise Development Only (built 2017-05-10)
Chrome on OSX
Hello, please try this test case:
you'll see that the checkbox of the 'checkboxField' is smaller than that of the 'member_g8' column (I would say too small).
Also there's a little black dot in the bottom-right corner of the boolean field icon. Here's a screenshot with spacious settings:
Chrome on OSX
Hello, please try this test case:
Code:
isc.ListGrid.create({ ID: "countryList", width:550, height:224, alternateRecordStyles:true, // use server-side dataSource so edits are retained across page transitions dataSource: countryDS, selectionAppearance:"checkbox", // display a subset of fields from the datasource fields:[ {name:"member_g8"}, {name:"countryCode", title:"Flag", width:40, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png", canEdit:false}, {name:"countryName"}, {name:"continent"}, {name:"population"}, {name:"independence"} ], autoFetchData: true, canEdit: true, editEvent: "click" })
Also there's a little black dot in the bottom-right corner of the boolean field icon. Here's a screenshot with spacious settings:
Comment