This content has been marked as final.
Show 4 replies
-
1. Re: Problem in <rich:dataTable>
dev aaa Sep 11, 2007 10:51 AM (in response to dev aaa)Can we use rendered and binding both properties of dataTable together?
As in the above case if I remove any one property of dataTable it works fine.
In my application I do not want to show the table if row count is less than one. -
2. Re: Problem in <rich:dataTable>
Roman Budukh Sep 13, 2007 3:47 AM (in response to dev aaa)In my application I do not want to show the table if row count is less than one.
Try this:
rendered="#{CreateViewBean.urlList.rowCount!=0}"> -
3. Re: Problem in <rich:dataTable>
jak wei Sep 14, 2007 5:40 AM (in response to dev aaa)may be need <h:form>
-
4. Re: Problem in <rich:dataTable>
dev aaa Sep 19, 2007 1:43 AM (in response to dev aaa)Thanks for your help but
rendered="#{CreateViewBean.urlList.rowCount!=0}"
does not work.
However I was able to solve the problem by using rendered property in
column group instead of dataTable
<rich:columnGroup rendered="#{CATCmaCreateViewBean.displayTable}">