UISelectBoolean.jsp 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <%@ include file="../../upper.jsp" %>
  2. <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
  3. <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
  4. <html>
  5. <body>
  6. <f:view>
  7. <fieldset>
  8. <legend><b>&lt;h:selectOneListbox id="products" value="#{productBean.currentProduct}"&gt;...</b></legend>
  9. <h:selectOneListbox id="pickCar" value="#{productBean.currentProduct}">
  10. <f:selectItems value="#{productBean.productList}" />
  11. </h:selectOneListbox>
  12. </fieldset>
  13. <fieldset>
  14. <legend><b>&lt;h:selectOneMenu id="selectProduct" value="#{productBean.currentProduct}"&gt;...</b></legend>
  15. <h:selectOneMenu id="selectProduct" value="#{productBean.currentProduct}"><f:selectItems value="#{productBean.productList}" />
  16. </h:selectOneMenu>
  17. </fieldset>
  18. <fieldset>
  19. <legend><b>UIPanel</b></legend>
  20. <h:panelGrid columns="4" footerClass="subtitle" headerClass="subtitlebig" styleClass="medium" columnClasses="subtitle,medium">
  21. <f:facet name="header">
  22. <h:outputText value="Table with numbers"/>
  23. </f:facet>
  24. <h:outputText value="1" />
  25. <h:outputText value="2" />
  26. <h:outputText value="3" />
  27. <h:outputText value="4" />
  28. <h:outputText value="5" />
  29. <h:outputText value="6" />
  30. <h:outputText value="7" />
  31. <h:outputText value="8" />
  32. <f:facet name="footer">
  33. <h:panelGroup>
  34. <h:outputText value="one row" />
  35. <h:outputText value=" " />
  36. <h:outputText value="grouped with panelGroup" />
  37. </h:panelGroup>
  38. </f:facet>
  39. </h:panelGrid>
  40. </fieldset>
  41. <fieldset>
  42. <legend><b>UIColumn and UIData</b></legend>
  43. <h:dataTable id="books" columnClasses="list-column-center, list-column-right, list-column-center, list-column-right" headerClass="list-header" rowClasses="list-row" styleClass="list-background" value="#{BookStore.items}" var="store">
  44. <h:column>
  45. <f:facet name="header">
  46. <h:outputText value="#{msg.storeNameLabel}"/>
  47. </f:facet>
  48. <h:outputText value="#{store.name}"/>
  49. </h:column>
  50. <h:column>
  51. <f:facet name="header">
  52. <Subject>
  53. </f:facet>
  54. <h:outputText value="#{store.subject}"/>
  55. </h:column>
  56. <h:column>
  57. <f:facet name="header">
  58. <h:outputText value="#{msg.storePriceLabel}"/>
  59. </f:facet>
  60. <h:outputText value="#{store.price}"/>
  61. </h:column>
  62. </h:dataTable>
  63. </fieldset>
  64. </f:view>
  65. </body>
  66. </html>
  67. <%@ include file="../../footer.html" %>