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=myTreeGrid.getAllRowIds();
//return the list of row ids with dot delimiter
var ids=myTreeGrid.getAllRowIds(".");