• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Repeating JSF code

 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, everybody.

I want to repeat this code in my page for any page I have:

<h:commandLink action="#{cliente.selectNumberPage}" value="1">
<f:param name="jsfcrud.chosenPage" value="0"/>
</h:commandLink> 

For example, for a list with 3 pages, it would be:

<h:commandLink action="#{cliente.selectNumberPage}" value="1">
<f:param name="jsfcrud.chosenPage" value="1"/>
</h:commandLink> 
<h:commandLink action="#{cliente.selectNumberPage}" value="2">
<f:param name="jsfcrud.chosenPage" value="2"/>
</h:commandLink> 
<h:commandLink action="#{cliente.selectNumberPage}" value="3">
<f:param name="jsfcrud.chosenPage" value="3"/>
</h:commandLink> 

I've tried with "c:forEach", but JSF doesn't recognize the variable when it's "loading" the page.

Does everybody knows a way to do that in a good practice way?
 
Curse your sudden but inevitable betrayal! And this tiny ad too!
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic