Is it possible to programmatically set the grid in Insert mode without the current records from the datasource been rendered? I assume that for the insert operation to work I really must databind.
I currently use this:
RadGrid1.MasterTableView.InsertItem();
to set the grid in insert mode.
What I want to achieve is use the nice editing capabilities of the grid to insert new items on a dedicated page or perhaps in a popup. I do not want to see the other records at that time.
Thanks for any help.