gd.visiblerows

gd.visiblerows

specify how many rows a grid should contain

Class

Grid Display

Property

gd.visiblerows

Formal specification

gd.visiblerows= <number> | auto

Required

no

Default



Version

1.0 / auto introduced in 1.4

Comment

Use visiblerows to size the height of the grid, expressed in number of rows. 
For instance 

  • gd.visiblerows = 10
    will show 10 rows of normal height Note that the height is calculated from the normal height and not expand automatically 

  • gd.visiblerows = auto
    is used to expand the grid automatically based on the number of rows on a certain page. 
    The calculation will take into account the other vertical size properties set by 

Example

To show a grid which has minimal 2 rows, but can expand to 10, use following properties 

gd.visiblerows=auto  gd.minDisplayRowCount=2  gd.maxDisplayRowCount=10 



Reference

 * gd.minDisplayGridHeight