I'm using Primefaces with JSF2.0. I have a nested dataTable which I want to be rendered only if some boolean flag(safeToLoadDataTable) is true, but this doesn't happen and when I open the page record.columnList throws NullPointerException because obviously it isn't yet initialized. I fill those lists after a search button from the same page it's pressed.
My Code:
<p:panel rendered="#{enastrSearch.safeToLoadDataTable}">
<p:dataTable id="tableData" var="record" value="#{enastrSearch.recordsList}" >
<p:column>
<p:dataTable var="column" value="#{record.columnList}">
<p:column>
<f:facet name="header">
Name
</f:facet>
<h:outputText value="#{column.columnName}" />
</p:column>
<p:column>
<f:facet name="header">
Value
</f:facet>
<h:outputText value="#{column.columnValue}" />
</p:column>
</p:dataTable>
</p:column>
</p:dataTable>
</p:panel>
Why doesn't the rendered attribute work? And I was also wondering if using nested dataTable is OK. Thank you!
UPDATE:
My flag looks like this:
private boolean safeToLoadDataTable;
public boolean isSafeToLoadDataTable() {
if(recordsList!=null && !recordsList.isEmpty()){
safeToLoadDataTable = true;
}else{
safeToLoadDataTable = false;
}
return safeToLoadDataTable;
}
Anyway I've tried even with return false and still the panel is rendered.
<p:panel rendered="false">? What PF version are you using? – BalusC Oct 5 '11 at 13:32<p:panel rendered="false">? – Bhesh Gurung Oct 5 '11 at 13:38