Richfaces dataTable works fine, but ExtendedDataTable is not showing data -


we using richfaces 4.1.0, , trying use extendeddatatable. started (for simplicity's sake) datatable. code below works fine, , shows data in table, expected.

<rich:datatable value="#{recipientbean.recipientlist}" var="recipient" selectionmode="none" id="recipienttable">     <rich:column sortable="false" id="col_1" label="name">         <f:facet name="header">             <h:outputtext value="name" id="name" />         </f:facet>         <h:outputtext value="#{recipient.name}" id="rec_name" />     </rich:column>     <!-- more columns below, removed post brevity --> </rich:datatable> 

we expecting large number of records, table scrollable. thought change datatable extendeddatatable, however, when that, no data shows @ all.

i started inspect element in chrome, , of sudden data showed up. when inspect element, see values in html, don't display when page loads.

could style issue? attribute missing (something needed extendeddatatable, not needed datatable)?

what else missing?

edit: have extendeddatatable inside rich:tabpanel. when remove rich:tabpanel displays correctly (but need tabpanel). known issue?

edit2: display correctly if on first tab of rich:tabpanel.

i found bug report on joss site. work around use switch type of ajax instead of client tab panel.


Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -