META-INF.schema.entities.extended_data_table_attributes.ent Maven / Gradle / Ivy
The newest version!
preserveDataModel java.lang.String
Indicates whether a state of the whole DataModel should be saved and
restored.
Default: false
forceIdIndexFormula java.lang.String
A formula that overrides the defaut row index in the construction of table
body components.
Example : #{myRowVar.key}
Warning, the EL should evaluate to a unique value for each row!
sortColumn java.lang.String
Value reference to a model property that gives the current sort column name
sortAscending java.lang.String
Value reference to a model property that gives the current sort direction
preserveSort java.lang.String
Indicates whether the state of the sortColumn and sortAscending attribute
should be saved and restored and written back to a model during an
update model phase.
Default: true
renderedIfEmpty java.lang.String
Indicates whether this table should be rendered if the underlying DataModel is
empty.
You could as well use rendered="#{not empty bean.list}", but this one causes
the getList method of your model bean beeing called up to five times per
request, which is not optimal when the list is backed by a DB table.
Using renderedIfEmpty="false" solves this problem, because the MyFaces
extended HtmlDataTable automatically caches the DataModel and calles the
model getter only once per request.
Default: true
rowIndexVar java.lang.String
A parameter name, under which the current rowIndex is set in request scope
similar to the var parameter
rowCountVar java.lang.String
A parameter name, under which the rowCount is set in request scope
similar to the var parameter
previousRowDataVar java.lang.String
A parameter name, under which the previous RowData Object is set in request scope
similar to the rowIndexVar and rowCountVar parameters.
Mind that the value of this request scope attribute is null in the first row
or when isRowAvailable returns false for the previous row
rowOnClick java.lang.String
Defines a JavaScript onclick event handler for each table row
rowOnDblClick java.lang.String
Defines a JavaScript ondblclick event handler for each table row
rowOnMouseDown java.lang.String
Defines a JavaScript onmpusedown event handler for each table row
rowOnMouseUp java.lang.String
Defines a JavaScript onmouseup event handler for each table row
rowOnMouseOver java.lang.String
Defines a JavaScript onmouseover event handler for each table row
rowOnMouseMove java.lang.String
Defines a JavaScript onmousemove event handler for each table row
rowOnMouseOut java.lang.String
Defines a JavaScript onmouseout event handler for each table row
rowOnKeyPress java.lang.String
Defines a JavaScript onkeypress event handler for each table row
rowOnKeyDown java.lang.String
Defines a JavaScript onkeydown event handler for each table row
rowOnKeyUp java.lang.String
Defines a JavaScript onkeyup event handler for each table row
rowId java.lang.String
The id to use for <tr> elements that are generated by a table
rowStyleClass java.lang.String Corresponds to the HTML class attribute for the row tr tag
rowStyle java.lang.String Corresponds to the HTML style attribute for the row tr tag