I want to add clist column to my grid and every row’s set of choices should be different.
For example.
var jsonData={rows:[{id:1,data:[“One”, “Two”, “Three”]}, {id:2,data:[“Alpha”, “Beta”, “Gamma”]}]};
var mygrid=new dhtmlXGridObject(‘objectGrid’);
…
mygrid.setColTypes(“ro,ro,clist”);
mygrid.registerCList(2,[“Three”,“Four”,“Five”]) // But this set is common, it is used for second row too. I want the other set for second row.
Is it possible?