I have a RadGridView which has a row for every employee in the database. Users manage employees using this Grid, so they have the capability to add, modify, and remove rows.
I have been able to use the RowsChanging/Changed events to call the appropriate DAL methods to add/remove the information from the underlying database, but when the user adds a row, the row is immediately sorted by whatever sort the user has chosen, and so it "appears" to disappear. In actuality, it has simply placed itself in the appropriate spot in the list according to the sort function. I would like to hook into an event that occurs when the user finishes adding the row and select the row so that the user can see that it was added successfully and did not disappear.
How would I accomplish this?