sir,
this is a follow up question…
if i have created a custom property for the dhtmlxgrid object how can i access it in an xml…
for example…
i can access row id in an xml by using the row tag , i would also like to do this, so that upon creation/population of the grid object i can store the values in my custom property…
i want the property only for the row…
thank you in advance again…
i want the property only for the row…
When loading from XML any attribute of row or cell tag can be accessed
programmatically.
<?xml version=‘1.0’
encoding=‘iso-8859-1’?>
cell content
To access row
attributes:
grid.getRowAttribute(“unique_rowid”,“some”);
grid.setRowAttribute(“unique_rowid”,“some”,“new value”);