sets new data for row's columns
rowId | string | the row id |
data | object | data to be set for a row in JSON format |
var new_data = {"id1":"value","id2":"value2","id3":"value3"};
myGrid.setRowData("row1",new_data); // setting new data for the row with id "row1"
In order to set data for the row, you need to check that related columns have ids specified.
added in version 5.1
Back to top