gets the list of all row ids in the grid
| separator | string | delimiter to be used in the list (optional, comma by default) |
| string | the list of all row ids in the grid |
//return the list of row ids with comma delimiter var ids=myGrid.getAllRowIds(); //return the list of row ids with dot delimiter var ids=myGrid.getAllRowIds(".");
Back to top