Hi there,
Is it possible to have a checkbox on a dhtmlxtouch grid like you can with the full dhtmlx version? For some reason I can’t find out how to do it. Something like this doesn’t seem to have any effect:
{
view:"grid",
id:"myGridView",
header:true,
datatype:"json",
select: true,
scroll:"xy",
fields: [
{
id:"Name",
label:"Role",
width:200
},
{
id:"Assigned",
label:"Assigned",
width:200,
type: "Checkbox"
}
}
Thanks