selects row by ID
row_id | string|number | row id |
preserve | boolean | preserve previously selected (optional, false by default). Multi select mode should be enabled. |
show | boolean | scroll row to view (optional, true by default) |
call | boolean | if true, call the onRowSelect function (optional, false by default) |
// minimal parameters' set
myGrid.selectRowById('row1');
// maximal parameters' set
myGrid.selectRowById('row1',true,true,true);