Hi all,
I have a problem checking all checkbox columns in a grid. I used the next code:
Me.mygrid.GridElement.BeginUpdate()
For Each row As Telerik.WinControls.UI.GridViewRowInfo In Me.mygrid.Rows
row.Cells("Checked").Value = True
Next row
Me.mygrid.GridElement.EndUpdate()
It works well, but if the grid is sorted by some column the same code is so slow...
The datatable contains about 15.000 items. is that the problem?
I have a problem checking all checkbox columns in a grid. I used the next code:
Me.mygrid.GridElement.BeginUpdate()
For Each row As Telerik.WinControls.UI.GridViewRowInfo In Me.mygrid.Rows
row.Cells("Checked").Value = True
Next row
Me.mygrid.GridElement.EndUpdate()
It works well, but if the grid is sorted by some column the same code is so slow...
The datatable contains about 15.000 items. is that the problem?