sets a row attribute
id | string|number | the id of a row |
name | string | an attribute's name |
value | mixed | a new attribute's value |
<?xml version='1.0' encoding='iso-8859-1'?>
<rows>
<row id="unique_rowid" some="data">
<cell some="data">cell content</cell>
</row>
</rows>
...
var rowAttr = grid.setRowAttribute("unique_rowid","some","new value");
Back to top