Get Attribute from cell

Hi,



I was wondering if there is a way to get an attribute from a cell in the dhtmlx treegrid?



I know there is one to get the attribute from a row



grid.getRowAttribute(“unique_rowid”,“attributename”);



but is there a way to get this from a cell instead like:



grid.getCellAttribute(“unique_cellId”,“attributename”);



/Olof

but is there a way to get this from a cell instead like:


dhtmlx.com/docs/products/dhtmlxG … t_userdata

To access cell attributes:
   
grid.cells(i,j).getAttribute(“some”);
   
grid.cells(i,j).setAttribute(“some”,“new value”);