Interface UITable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegergetPageSize()ToolbargetRowToolbar()Returns the programmatic toolbar to display on row.StringgetRowToolbarName()Returns the name of the toolbar to display on row.ToolbargetTopToolbar()Returns the programmatic toolbar to display on top.StringgetTopToolbarName()Returns the name of the toolbar to display on top.booleanisRowToolbarHidden()Returnstrueif row toolbars are hidden.booleanisTopToolbarHidden()Returnstrueif table toolbar is hidden.voidsetPageSize(int newPageSize)Sets the number of entries on each page of the table component.voidsetRowToolbar(Toolbar rowToolbar)Specifies the programmatic toolbar to display on row.voidsetRowToolbarHidden(boolean rowToolbarHidden)Specifies if table should display its toolbars on rows.voidsetRowToolbarName(String rowToolbarName)Specifies the name of the toolbar to display on row.voidsetTopToolbar(Toolbar topToolbar)Specifies the programmatic toolbar to display on top.voidsetTopToolbarHidden(boolean topToolbarHidden)Specifies if table should display its toolbar.voidsetTopToolbarName(String topToolbarName)Specifies the name of the toolbar to display on top.-
Methods inherited from interface com.orchestranetworks.ui.form.widget.UIWidget
isEditorDisabled, setEditorDisabled
-
-
-
-
Method Detail
-
getPageSize
Integer getPageSize()
- Returns:
- the page size of list of the table component,
or
nullif it has not been defined.
-
setPageSize
void setPageSize(int newPageSize)
Sets the number of entries on each page of the table component.- Parameters:
newPageSize- the number of entries on each page of the table component, must be greater than zero.
-
isTopToolbarHidden
boolean isTopToolbarHidden()
Returnstrueif table toolbar is hidden.- Since:
- 6.0.0
-
setTopToolbarHidden
void setTopToolbarHidden(boolean topToolbarHidden)
Specifies if table should display its toolbar. The pagination toolbar and filter button will still be displayed.- Parameters:
topToolbarHidden- set totrueto hide table toolbar.- Since:
- 6.0.0
-
isRowToolbarHidden
boolean isRowToolbarHidden()
Returnstrueif row toolbars are hidden.- Since:
- 6.0.0
-
setRowToolbarHidden
void setRowToolbarHidden(boolean rowToolbarHidden)
Specifies if table should display its toolbars on rows.- Parameters:
rowToolbarHidden- set totrueto hide table rows toolbar.- Since:
- 6.0.0
-
getTopToolbarName
String getTopToolbarName()
Returns the name of the toolbar to display on top.- Since:
- 6.0.0
-
setTopToolbarName
void setTopToolbarName(String topToolbarName)
Specifies the name of the toolbar to display on top. This is incompatible withsetTopToolbar(Toolbar)and will remove any configuration made by this method.- Since:
- 6.0.0
-
getTopToolbar
Toolbar getTopToolbar()
Returns the programmatic toolbar to display on top.- Since:
- 6.0.0
-
setTopToolbar
void setTopToolbar(Toolbar topToolbar)
Specifies the programmatic toolbar to display on top. This is incompatible withsetTopToolbarName(String)and will remove any configuration made by this method.- Since:
- 6.0.0
-
getRowToolbarName
String getRowToolbarName()
Returns the name of the toolbar to display on row.- Since:
- 6.0.0
-
setRowToolbarName
void setRowToolbarName(String rowToolbarName)
Specifies the name of the toolbar to display on row. This is incompatible withsetRowToolbar(Toolbar)and will remove any configuration made by this method.- Since:
- 6.0.0
-
getRowToolbar
Toolbar getRowToolbar()
Returns the programmatic toolbar to display on row.- Since:
- 6.0.0
-
setRowToolbar
void setRowToolbar(Toolbar rowToolbar)
Specifies the programmatic toolbar to display on row. This is incompatible withsetRowToolbarName(String)and will remove any configuration made by this method.- Since:
- 6.0.0
-
-