Hi,
In a dhtmlxGrid i have 2 columns with co excelltype. I populate these combo as this :
loader=dhtmlxAjax.getSync(“Chargepermanent.php?Service=”+id);
tot=loader.doXPath("//Permanent").length;
combo1 = grillepermanence.getCombo(2);
combo2 = grillepermanence.getCombo(3);
combo1.clear();
combo2.clear();
combo1.put("-1",“A d�terminer”);
combo2.put("-1",“A d�terminer”);
for(var i = 0; i<tot; i++){
combo1.put(loader.doXPath("//Value")[i].firstChild.nodeValue,loader.doXPath("//Nom")[i].firstChild.nodeValue);
combo2.put(loader.doXPath("//Value")[i].firstChild.nodeValue,loader.doXPath("//Nom")[i].firstChild.nodeValue);
}
I want some items to be unselectable (disabled item).
Is it possible ?
Thanks
Unfortunately “co” eXcell type hasn’t such functionality. But you can implement any custom eXcell type you need. Please find more information here dhtmlx.com/dhxdocs/doku.php?id=d … l_creation