Hello,
I'm using actually smartclient version 13.0-p20230720 power. I have some problem with showFilterEditor attr for ListGrid.
For example in this code, taken from: https://smartclient.com/smartclient-...e/?id=listType
isc.ListGrid.create({
ID: "countryList",
width:500, height:224, alternateRecordStyles:true,
canEdit:true, editEvent:"click", modalEditing:true,
data: countryData,
fields:[
{name:"countryCode", title:"Flag", width:60, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png", canEdit:false},
{name:"countryName", title:"Country"},
{name:"continent", title:"Continent",
valueMap:["Europe", "Asia", "North America", "Australia/Oceania", "South America", "Africa"]
}
],
showFilterEditor: true
})
The top menu regarding the filter, shows checkboxes (I attach image) that were not present in version 11.
Below is the same code in version 11.
https://smartclient.com/smartclient-...e/?id=listType
isc.ListGrid.create({
ID: "countryList",
width:500, height:224, alternateRecordStyles:true,
canEdit:true, editEvent:"click", modalEditing:true,
data: countryData,
fields:[
{name:"countryCode", title:"Flag", width:50, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png", canEdit:false},
{name:"countryName", title:"Country"},
{name:"continent", title:"Continent",
valueMap:["Europe", "Asia", "North America", "Australia/Oceania", "South America", "Africa"]
}
],
showFilterEditor: true,
})
How can I delete checkboxes in version 13?
Thanks
I'm using actually smartclient version 13.0-p20230720 power. I have some problem with showFilterEditor attr for ListGrid.
For example in this code, taken from: https://smartclient.com/smartclient-...e/?id=listType
isc.ListGrid.create({
ID: "countryList",
width:500, height:224, alternateRecordStyles:true,
canEdit:true, editEvent:"click", modalEditing:true,
data: countryData,
fields:[
{name:"countryCode", title:"Flag", width:60, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png", canEdit:false},
{name:"countryName", title:"Country"},
{name:"continent", title:"Continent",
valueMap:["Europe", "Asia", "North America", "Australia/Oceania", "South America", "Africa"]
}
],
showFilterEditor: true
})
The top menu regarding the filter, shows checkboxes (I attach image) that were not present in version 11.
Below is the same code in version 11.
https://smartclient.com/smartclient-...e/?id=listType
isc.ListGrid.create({
ID: "countryList",
width:500, height:224, alternateRecordStyles:true,
canEdit:true, editEvent:"click", modalEditing:true,
data: countryData,
fields:[
{name:"countryCode", title:"Flag", width:50, type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png", canEdit:false},
{name:"countryName", title:"Country"},
{name:"continent", title:"Continent",
valueMap:["Europe", "Asia", "North America", "Australia/Oceania", "South America", "Africa"]
}
],
showFilterEditor: true,
})
How can I delete checkboxes in version 13?
Thanks
Comment