Details
-
Improvement
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
Description
There should be a way to reset the datascroller back to page one when clicking a UICommand without writing java code and binding the UIData to the backing bean.
Currently this has to be done as follows:
<h:commandButton
value="Submit Query"
action="#
"
actionListener="#
">
</h:commandButton>
<t:dataTable id="searchResultsDataTable"
binding="#
"
public void resetDataScroller(ActionEvent e)
{ searchUIData.setFirst(0); }