Completed
Last Updated: 25 Jul 2014 07:53 by ADMIN
ADMIN
Stefan
Created on: 30 May 2013 09:14
Category: GridView
Type: Bug Report
4
FIX. RadGridView - UserAddedRow is not fired when the AddNewRowPosition is Bottom and the NewRowEnterKeyMode is EnterMovesToNextCell
To reproduce set AddNewRowPosition is Bottom and the NewRowEnterKeyMode is EnterMovesToNextCell and add a new row via na UI

Workaround:
        void radGridView1_RowsChanged(object sender, GridViewCollectionChangedEventArgs e)
        {
            if (e.Action == NotifyCollectionChangedAction.Add && radGridView1.CurrentRow is GridViewNewRowInfo)
            {

            }
        }
0 comments