adds a row to the grid
new_id | string|number | row ID, must be unique |
text | string|number | row values, may be a comma-separated list or an array |
ind | string|number | index of the new row, row is added to the last position by default, optional |
var newId = (new Date()).valueOf();
myGrid.addRow(newId,"");
Back to top