Completed
Last Updated: 13 Oct 2015 10:11 by ADMIN
ADMIN
Dimitar
Created on: 20 Nov 2014 13:27
Category: GridView
Type: Bug Report
1
FIX. RadGridView - when the grid is grouped and has summary rows and the user is adding rows the scroll functionality is broken.
To reproduce: 
- Add grid to a blank form. 
- Add summary rows and group descriptors.
- Add rows upon a button click.
- You will notice that not all rows are visible.

Workaround: 
radGridView1.TableElement.Update(GridUINotifyAction.RowHeightChanged, null);
radGridView1.TableElement.VScrollBar.Value = radGridView1.TableElement.VScrollBar.Maximum - radGridView1.TableElement.VScrollBar.LargeChange;
0 comments