I'm using primefaces 5.2 and jsf. I'm using data-table for displaying top ten failed TC's and those count. Records are dynamic values and fetching from DB, its working fine. But i want display the 10 records in two columns of each 5 records.
For Example :
TC NAME COUNT
TC01_Test 35 TC06_Test 15
TC02_Test 23 TC07_Test 13
TC03_Test 20 TC08_Test 10
TC04_Test 18 TC08_Test 9
TC05_Test 17 TC10_Test 5
I want display my records like above mentioned example. How can i achieve this? XHTML:
<div class="DTHeadertwo" >
<p:dataTable var="failedTCs" value="#{reportsExeProgressBean.topTenFailedTcs}" >
<p:column headerText="TC Name">
<h:outputText style="font-size: 12px;" value="#{failedTCs.testCaseName}" />
</p:column>
<p:column headerText="Failed Count">
<h:outputText style="font-size: 20px;" value="#{failedTCs.failedCount}" />
</p:column>
</p:dataTable>
</div>
you can not use DataTable in that way
better consider using dataGrid but even with that your list become like this:
code example: