Completed
Last Updated: 05 Feb 2013 06:05 by ADMIN
ADMIN
Anton
Created on: 05 Feb 2013 06:05
Category:
Type: Bug Report
1
FIX. RadListView - the SelectedIndexChanged event returns -1 after the first selected item change
The SelectedIndexChanged  and the SelectedItemChanged events are firing more than 1 time after first selected item change. Only the last index is correct. 

Workaround:
1. Add the following code snippet at the start of the event

            if (radListView1.SelectedIndex < 0) 
            {
                return;
            }
0 comments