Author Topic: how to "Any normal HTML table can be converted into ParamQuery Grid."  (Read 1709 times)

dataSQL_

  • Pro Deluxe
  • Newbie
  • *
  • Posts: 48
    • View Profile
Hello, the example http://paramquery.com/demos/grid_table

Please, how may I accomplish the exact same with my created html table - done using a managed bean as shown in this xhtml:

http://35.164.222.200/

Code: [Select]
<h:body>
<h:dataTable width="100%" value="#{queryBean.getDataList()}" var="u"
border="1">

<h:column>
<f:facet name="header">Number</f:facet>
#{u.caseno}
</h:column>

</h:dataTable>
</h:body>