Hello,
When I add a new item using the add new box, my grid has over 1000 items, but the user does not know there is a free line at the bottom (my addnewbox is at the top), can I get the browser to move down to the last row? Also it does not have the 'click style' feel like it has been pushed it stays the same even on click.
Any help would be lovely jubbly.
Dave
Thank you Adam that worked a treat.
Try the following:
Add a handler for the AfterRowInsert Event on the client and do the following:
//Add code to handle your event here.
row.getCell(1).beginEdit();
row.activate();
row.scrollToView();
}