Guest User

Untitled

a guest
Jun 24th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <h:commandLink value="Vorige" rendered="#{users.offset >0}" style="float:left;">
  2. <f:setPropertyActionListener target="#{users.offset}" value="#{users.offset - users.maxResults}" />
  3. </h:commandLink>
  4. <h:commandLink value="Volgende" rendered="#{users.offset < (users.total - users.maxResults)}" style="float:right;">
  5. <f:setPropertyActionListener target="#{users.offset}" value="#{users.offset + users.maxResults}" />
  6. </h:commandLink>
Add Comment
Please, Sign In to add comment