var grid = igtbl_getGridById('<%=UltraWebGrid1.ClientID%>');
i have this grid now i want to get last row id how can i get it please help...
var lastRow = grid.Rows.getRow(grid.Rows.length);
giving null object...
first time it gives me null then when i add new row it gives me accurate result .....
but i want address first time also..
var lastRow = grid.Rows.getRow(grid.Rows.length-1);