SmartClient Version: SNAPSHOT_v12.1d_2019-05-29/AllModules Development Only (built 2019-05-29)
Chrome on OSX
Hello, please try the #expansionDetailField in the showcase, modified like this:
if you expand a record, the checkboxField image disappears.
Actually I'm not sure that selectOnExpandRecord makes sense with this checkbox selection, but this behaviour, without a warning, doesn't seem correct.
Chrome on OSX
Hello, please try the #expansionDetailField in the showcase, modified like this:
Code:
isc.ListGrid.create({
ID: "countryList",
width:500, height:300,
alternateRecordStyles:true,
//expansionFieldImageShowSelected:true,
selectionAppearance:"checkbox",
selectOnExpandRecord:false,
data: countryData,
fields: [
{name: "countryName", title: "Country"},
{name: "capital", title: "Capital"},
{name: "continent", title: "Continent"}
],
canExpandRecords: true,
expansionMode: "detailField",
detailField: "background"
});
Actually I'm not sure that selectOnExpandRecord makes sense with this checkbox selection, but this behaviour, without a warning, doesn't seem correct.
Comment