Skip to content

Instantly share code, notes, and snippets.

@ramannanda9
Created July 5, 2014 12:55
Show Gist options
  • Save ramannanda9/55e7214f0a7adf18d626 to your computer and use it in GitHub Desktop.
Save ramannanda9/55e7214f0a7adf18d626 to your computer and use it in GitHub Desktop.
The jspx page
<af:table var="row" rowBandingInterval="0" id="t11"
binding="#{pageFlowScope.tempBean.table}" value="#{pageFlowScope.tempBean.valuesList}"
rowSelection="multiple"
queryListener="#{pageFlowScope.tempBean.onQuery}"
filterModel="#{pageFlowScope.tempBean.qs}"
filterVisible="true" emptyText="no result found">
<af:column sortProperty="firstName" sortable="true" filterable="true"
headerText="FirstName" id="c1">
<af:outputText value="#{row.firstName}" id="ot1"/>
</af:column>
<af:column sortProperty="lastName" filterable="true" sortable="true" headerText="LastName"
id="c2">
<af:outputText value="#{row.lastName}" id="ot2"/>
</af:column>
</af:table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment