Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. <p:panelGrid columns="#{horaireBean.listCalendrier.size()+1}"
  2. styleClass="horaire1" >
  3.  
  4. <p:outputLabel >
  5. <center>
  6. <h4>Catégorie/Calendrier</h4>
  7. </center>
  8. </p:outputLabel>
  9.  
  10. <c:forEach var="cal" begin="1"
  11. end="#{horaireBean.listCalendrier.size()}">
  12.  
  13. <p:outputLabel
  14. value="#{horaireBean.listCalendrier.get(cal-1).designation}" />
  15.  
  16. </c:forEach>
  17.  
  18. <c:forEach var="j" begin="1"
  19. end="#{horaireBean.listCategorie.size()}">
  20. <p:outputLabel
  21. value="#{horaireBean.listCategorie.get(j-1).desigCat}" />
  22. <c:forEach var="i" begin="1"
  23. end="#{horaireBean.listCalendrier.size()}">
  24.  
  25.  
  26. <p:selectOneMenu value="#{horaireBean.listehoraire.get(j-1).get(i-1)}"
  27. styleClass="horaire2" converter="sequenceConverter" >
  28. <f:selectItem itemLabel="#{horaireBean.listehoraire.get(j-1).get(i-1).desigSeq}"/>
  29. <f:selectItems value="#{sequencebean.listeSequence}" var="seq" itemLabel="#
  30. {seq.desigSeq}" itemValue="#{seq}" />
  31. <p:ajax event="change" process="@this" update=":formheader:enregistrer
  32. :formheader:annuler" />
  33. </p:selectOneMenu>
  34.  
  35.  
  36. </c:forEach>
  37. </c:forEach>
  38. </p:panelGrid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement