Enum sap.ui.table.VisibleRowCountModeModule: sap/ui/table/library


VisibleRowCountMode of the table

Field Summary
sap.ui.table.VisibleRowCountMode.AutoThe table automatically fills the height of the surrounding container.
sap.ui.table.VisibleRowCountMode.FixedThe table always has as many rows as defined in the visibleRowCount property.
sap.ui.table.VisibleRowCountMode.InteractiveAfter rendering the table has as many rows as defined in visibleRowCount property.
Field Detail
sap.ui.table.VisibleRowCountMode.Auto: string
The table automatically fills the height of the surrounding container. The visibleRowCount property is automatically changed accordingly. All rows need the same height, otherwise the auto mode doesn't always work as expected. The height of all siblings within the same layout container of the table will be subtracted from the available height. For performance reasons, it is recommended to add no siblings in the table's parent container.
sap.ui.table.VisibleRowCountMode.Fixed: string
The table always has as many rows as defined in the visibleRowCount property.
sap.ui.table.VisibleRowCountMode.Interactive: string
After rendering the table has as many rows as defined in visibleRowCount property. The user is able to change the visible rows by moving a grip with the mouse. The visibleRowCount property is changed accordingly.