Completed
Last Updated: 18 Sep 2012 03:32 by ADMIN
ADMIN
Ivan Todorov
Created on: 18 Sep 2012 03:32
Category:
Type: Bug Report
1
FIX. Sorted RadListView is not updated correctly when you modify the value in a cell via code.
If RadListView is sorted by first two columns and you add items using the following code:

ListViewDataItem item = new ListViewDataItem();
radListView1.Items.Add(item);        
item[0] = name; 
item[1] = sTime;

the sort order will not be refreshed correctly. To workaround this issue, use the BeginUpdate/EndUpdate methods to surround the above code block.
0 comments