You can specify grid display format (height, width, ...) using these properties.
Renew your license to continue
Your evaluation license has expired. Contact your administrator to renew your Reporting for Confluence license.
The parameters have an effect on each other. The plugin tries to show as much information as possible, avoiding the need to display horizontal or vertical scroll bars. There are many different factors that influence this layout. The Grid layout components provide some insights.
The priorities of the parameters are as follows
gd.maxDisplayGridHeight has always more priority than gd.minDisplayRowCount if the the row height=1 and gd.minDisplayRowCount=10 then the grid height should be at least 10, but if gd.maxDisplayGridHeight=5, then the height of grid will be 5. The gd.minDisplayRowCount rule is be overriden by the maxDisplayGridHeight rule.
gd.minDisplayGridHeight has always more priority than gd.maxDisplayRowCount. if gd.minDisplayGridHeight = 100, gd.maxDisplayRowCount=3 and gd.minDisplayRowHeight=5, then the resulting grid height is 100
gd.maxDisplayGridHeight has more priority than gd.minDisplayRowHeight
You don't need to start with an empty grid. Check grid reload for more details.
You can initialize a grid either statically or dynamically with the help of these properties.
To initialize a grid statically use the gd.query.row properties.
To initialize a grid dynamically use the gd.query and gd.query.ds properties.
Renew your license to continue
Your evaluation license has expired. Contact your administrator to renew your Reporting for Confluence license.
If a grid contains static and dynamic initialization properties, both will be used to set up initial data.
For example, when the grid configuration contains properties as below, it will be initialized with all the employees aged 25 or younger, and the 2 static entries (Brad Pitt and Angelina Jolie).
gd.columns = firstname, lastname
gd.query = select firstname, lastname from employees where age < 26
gd.query.ds= employeedb
gd.query.row1 = Brad, Pitt
gd.query.row2 = Angelina, Jolie
These properties are meant to setup a configuration specific connection to a database. Alternatively (and recommended approach) is to use the Datasource Specifications
Renew your license to continue
Your evaluation license has expired. Contact your administrator to renew your Reporting for Confluence license.