Attributes |
Name | Required | Request-time | Type | Description |
id | false | false | java.lang.String | The developer-assigned ID of this component. The ID must be unique within the scope of the tag's enclosing naming container (e.g. h:form or f:subview). This value must be a static value. |
binding | false | false | java.lang.String | Identifies a backing bean property (of type UIComponent or appropriate subclass) to bind to this component instance. This value must be an EL expression. |
rendered | false | false | java.lang.String | A boolean value that indicates whether this component should be rendered. Default value: true. |
enabledOnUserRole | false | false | java.lang.String | If user is in given role, this component will be rendered normally. If not, no hyperlink is rendered but all nested tags (=body) are rendered. |
visibleOnUserRole | false | false | java.lang.String | If user is in given role, this component will be rendered normally. If not, nothing is rendered and the body of this tag will be skipped. |
for | false | false | java.lang.String | The JSF id of a UIData component that this scroller will affect. If this attribute is not present then the datascroller must be a child of a UIData comopnent. |
layout | false | false | java.lang.String | The layout this scroller should render with. Default is 'table', 'list' is implemented as well. Additionally you can use 'singleList' - then the data-scroller will render a list, but not the paginator - same with the value 'singleTable'. |
fastStep | false | false | java.lang.String | step (pages) used for fastforward and fastrewind |
pageIndexVar | false | false | java.lang.String | A parameter name, under which the actual page index is set in request scope similar to the var parameter. |
pageCountVar | false | false | java.lang.String | A parameter name, under which the actual page count is set in request scope similar to the var parameter. |
rowsCountVar | false | false | java.lang.String | A parameter name, under which the actual rows count is set in request scope similar to the var parameter. |
displayedRowsCountVar | false | false | java.lang.String | A parameter name, under which the actual displayed rows count is set in request scope similar to the var parameter. |
firstRowIndexVar | false | false | java.lang.String | A parameter name, under which the actual first displayed row index is set in request scope similar to the var parameter. |
lastRowIndexVar | false | false | java.lang.String | A parameter name, under which the actual last displayed row index is set in request scope similar to the var parameter. |
styleClass | false | false | java.lang.String | styleClass for scroller table |
style | false | false | java.lang.String | style for scroller table |
paginator | false | false | java.lang.String | If set true, then the paginator gets rendered |
paginatorMaxPages | false | false | java.lang.String | The maximum amount of pages to be displayed in the paginator. |
paginatorTableClass | false | false | java.lang.String | styleclass for pagingator |
paginatorTableStyle | false | false | java.lang.String | style for pagingator |
paginatorColumnClass | false | false | java.lang.String | styleClass for paginator's column |
paginatorColumnStyle | false | false | java.lang.String | style for paginator's column |
paginatorActiveColumnClass | false | false | java.lang.String | styleClass for paginator's column with pageIndex = currentPageIndex |
paginatorActiveColumnStyle | false | false | java.lang.String | style for paginator's column with pageIndex = currentPageIndex |
paginatorRenderLinkForActive | false | false | java.lang.String | 'true' - render a link for the paginator's column with pageIndex = currentPageIndex. Default-value is 'true'. |
renderFacetsIfSinglePage | false | false | java.lang.String | If set to false, the facets aren't renderd if all the lines are contained on a single page. Default is true. |
nextStyleClass | false | false | java.lang.String | style-class for dataScroller next-element |
lastStyleClass | false | false | java.lang.String | style-class for data-scroller last-element |
fastfStyleClass | false | false | java.lang.String | style-class for data-scroller fast-forward-element |
fastrStyleClass | false | false | java.lang.String | style-class for data-scroller fast-rewind-element |
firstStyleClass | false | false | java.lang.String | style-class for data-scroller first-element |
previousStyleClass | false | false | java.lang.String | style-class for data-scroller previous-element |
immediate | false | false | java.lang.String | True means that the default ActionListener should be executed immediately (i.e. during Apply Request Values phase of the request processing lifecycle), rather than waiting until the Invoke Application phase. |
actionListener | false | false | java.lang.String | MethodBinding pointing at method acception an ActionEvent with return type void. |
onclick | false | false | java.lang.String | HTML: Script to be invoked when the element is clicked. |
ondblclick | false | false | java.lang.String | HTML: Script to be invoked when the element is double-clicked. |