Completed
Last Updated: 17 Sep 2015 14:16 by ADMIN
ADMIN
Stefan
Created on: 26 Mar 2012 10:35
Category: GridView
Type: Bug Report
2
FIX. RadGridView - the Current item in the Binding Source is not updated after sorting.
Workaround:  set the Position of the current item of the BindingSource in the CurrentRowChanged event of RadGridView:
void rgvInvoices_CurrentRowChanged(object sender, CurrentRowChangedEventArgs e)
{
    int index = bsInvoices.IndexOf(e.CurrentRow.DataBoundItem) ;
    bsInvoices.Position = index;
}
0 comments