Hello, I just noticed that alwaysShowEditors:true (which I use with just a column editable), seems to exclude the possibility to use selectionAppearance: "checkbox", is it expected?
test case:
test case:
Code:
isc.ListGrid.create({ ID: "countryList", width:500, height:224, data: countryData, selectionAppearance:"checkbox", alwaysShowEditors:true, fields:[ {name:"countryCode", title:"Flag", width:60, type:"image", imageURLPrefix:"flags/24/", imageURLSuffix:".png"}, {name:"countryName", title:"Country"}, {name:"capital", title:"Capital"}, {name:"continent", title:"Continent", canEdit:true} ] })
Comment