Create Dynamic Grid Rows in Tables

This article demonstrates how to create dynamic grid rows in Table control.

Procedure

Set the following values in the Advanced property of the table.

visibleRowCountMode="Auto" minAutoRowCount="1"

 

Property

Value

Description

Property

Value

Description

visibleRowCountMode

Auto

Defines how the table handles the visible rows in the table.

In the "Auto" mode, the visibleRowCount property is changed by the table automatically. It will then adjust its row count to the space it is allowed to cover (limited by the surrounding container), but it cannot have less than defined in the minAutoRowCount property. The visibleRowCount property cannot be set manually.

minAutoRowCount

1

This property is used to set the minimum count of visible rows when the property visibleRowCountMode is set to Auto or Interactive. For any other visibleRowCountMode, it is ignored. Default value is 5.

 

Related articles