returns the row data
rowId | string | the row id |
object | the row data |
myGrid.setColumnIds("id1,id2,id3"); //setting ids for columns of the row with id "row1"
var data = myGrid.getRowData("row1");
// -> data = {"id1":"value","id2":"value2","id3":"value3"}
In order to get data of the row, you need to check that related columns have ids specified.
added in version 5.1
Back to top