当(datagrid)arraylist为空时渲染面板

时间:2013-04-30 16:30:39

标签: jsf-2 primefaces

您好我正在使用p:layout组件。

p:layout style="min-width:400px;min-height:200px;" id="layout">  
    <p:layoutUnit position="west" resizable="true" size="100" minSize="40" maxSize="200">  

        <p:panel id="pnl" header="Help" toggleable="true"  toggleSpeed="500" 
        closeSpeed="500" widgetVar="panel" style="width:265px" rendered="#{backBean.renderPanel}">  
</p:panel>
<p:dataGrid var="sample" value="#{backBean.list}"
                            columns="1" style="margin-left: -5px;width: 275px; border:none;"
                            rows="7" >

                            //displaying some values from list here

</p:dataGrid>
        <p:poll interval="3"   
            listener="#{backBean.check}" update="pnl" />  
    </p:layoutUnit>  

    <p:layoutUnit position="center">  
        Center  
    </p:layoutUnit> 
  

现在我想在列表为空时呈现如上所示的面板,如果是的话   空,然后面板将不会被渲染。所以我们知道我们有   p:poll组件,它自动更新任何特定的面板或   指定间隔后的任何其他组件。所以我申请了民意调查   以这种方式监听和检查列表大小。

public void check(){

    if(list.size>0){
    renderPanel=false;
    }
    else{
    renderPanel=true;
    }
    }
which is working fine . I am getting value of renderPanel flag as true when list is empty , but still my panel is not rendering.
why is it so? what I am missing?

My backing bean code for renderPanel flag :



@ManagedBean
@ViewScoped
    class BackBean implements Serializable{

    private  boolean renderPanel=false;
        public boolean isRenderPanel() {
        return renderPanel;
    }


    public void setRenderPanel(boolean renderPanel) {
        this.renderPanel = renderPanel;
    }



    }
  

我该如何渲染我的面板?

1 个答案:

答案 0 :(得分:1)

您需要更新面板的父级,因为它在第一次不存在时无法重新呈现:

<h:panelGroup id="pnl">
    <p:panel header="Help" toggleable="true"  toggleSpeed="500" closeSpeed="500" widgetVar="panel" style="width:265px" rendered="#{backBean.renderPanel}">  
    </p:panel>
</h:panelGroup>

现在 pnl 将永远不存在其子女的rendered="#{}"属性。