Completed
Last Updated: 10 Jul 2014 13:14 by ADMIN
ADMIN
George
Created on: 23 Jun 2014 10:16
Category: GridView
Type: Bug Report
0
FIX. RadGridView - Cannot set a page when paging is enabled and the grid's AutoSize property is set to true
To reproduce:

Add a RadGridView with some data and enable the paging functionality. Also set the AutoSize property to true:

grid.EnablePaging = true;
grid.AutoSize = true;

Start the application and you will see that when you try to edit the textbox with the number of the page you will not be able to.

Workaround:

Set the AutoSize property to false and use MinimumSize instead:

grid.AutoSize = false;
grid.MinimumSize = new Size(600, 500);

0 comments