Completed
Last Updated: 07 Mar 2016 09:53 by ADMIN
ADMIN
Dimitar
Created on: 11 Feb 2016 07:40
Category: GridView
Type: Bug Report
0
FIX. RadGridView - all cells are measured when the grid is filtered and there is no data rows visible.
To reproduce:
- Add 100000 rows to the grid.
- Filter the grid so there are no rows.
- Call the BestFitColumns method:
radGridView1.MasterTemplate.BestFitColumns(Telerik.WinControls.UI.BestFitColumnMode.DisplayedCells)

Workaround:
If gridview.MasterTemplate.DataView.Count > 0 Then
	gridview.MasterTemplate.BestFitColumns()
End If

0 comments