Declined
Last Updated: 01 Oct 2014 12:58 by ADMIN
ADMIN
Peter
Created on: 21 Apr 2014 06:34
Category: GridView
Type: Bug Report
0
FIX. RadGridView - DataBinding is slower when ShowColumnHeaders is set to true
Setting the DataSource is slower (about 1/3 times more)  when ShowColumnHeaders is set to true. Workaround: 

Set the ShowColumnHeaders to false, then set the DataSource and restore the ShowColumnHeaders state:

radGridView1.ShowColumnHeaders = false;
radGridView1.DataSource =  mySource;
radGridView1.ShowColumnHeaders = true;
0 comments