I am using a RadListView with NeedDataSource binding, and Insert/Update/Delete capabilities.
After the item is inserted, the InsertItem disappears, I don't want to have a "New Record" button, I want to always be an InsertItem template at the bottom.
The first try was to use:
protected void RadListView1_ItemInserted(object sender, RadListViewInsertedEventArgs e)
{
e.KeepInInsertMode = true;
}
This worked fine when I was using Simpe data-binding, as I have faced other problems, I switched to Advanced Data Binding. After that, the event ItemInserted is not reachedanymore (I suspect it is because the ListView is rebinded after the Insert)
Any solutions to my problem? Also, why is the property InsertItemPosition is not enough? What cases should the property be enough?