coro in celL

Hi,



is it possible to add individual combo’s to cells instead of just columns



thanks

Latest version ( dhtmlxgrid 1.4 ) contains some support for such initialization
It can be done from XML


    1
    1
       One
       Two
       Three
   

      
or through javscript in next way

var z = new dhtmlXGridComboObject();
grid.cells(i,j).cell._combo=z;
z.put(1,“One”);
z.put(2,“Two”);
z.put(3,“Three”);