Hi
The grid seems to slow down alot when I have a few checkbox columns and I display the grid fullscreen. I've testing by removing and adding columns using the column chooser, and the grid is only slow when the check box columns are present.
I am binding a a generic list to the grid.
I am doing the following when initially creating the grid (setting the columns to readonly), and removing this code does improve that responsiveness
The grid seems to slow down alot when I have a few checkbox columns and I display the grid fullscreen. I've testing by removing and adding columns using the column chooser, and the grid is only slow when the check box columns are present.
I am binding a a generic list to the grid.
I am doing the following when initially creating the grid (setting the columns to readonly), and removing this code does improve that responsiveness
For Each col As GridViewColumn In grdProdArea.MasterGridViewTemplate.Columns
col.ReadOnly = True
Next