Completed
Last Updated: 19 Jun 2017 12:09 by ADMIN
ADMIN
Dimitar
Created on: 03 Mar 2017 11:38
Category: GridView
Type: Bug Report
1
FIX. RadGridView - wrong section behavior when MultiSelect is true and the row header is hidden
To reproduce:
this.radGridView1.MultiSelect = true;
this.radGridView1.SelectionMode = Telerik.WinControls.UI.GridViewSelectionMode.CellSelect;

radGridView1.ShowRowHeaderColumn = false;

Then select the cells in the firs column by dragging the mouse.

Workaround:
// radGridView1.ShowRowHeaderColumn = false;
radGridView1.TableElement.RowHeaderColumnWidth = 0;

0 comments