SmartClient Version: v11.1p_2017-09-14/AllModules Development Only (built 2017-09-14)
Chrome on OSX
Hello, please try the #filter sample, in 'expanded' skin density, modified to include a boolean field:
You'll see that the filter editor checkbox seems aligned to the bottom of the cell:
Same problem with medium density. Seems fine with the other densities.
Chrome on OSX
Hello, please try the #filter sample, in 'expanded' skin density, modified to include a boolean field:
Code:
isc.ListGrid.create({ ID: "countryList", width:500, height:300, alternateRecordStyles:true, dataSource: worldDS, fields:[ {name:"countryCode", title:"Code", width:60}, {name:"countryName", title:"Country"}, {name:"capital", title:"Capital"}, {name:"member_g8", title:"G8"} ], autoFetchData: true, showFilterEditor: true })
Same problem with medium density. Seems fine with the other densities.
Comment