我有一个父窗口与一个与另一个bean关联的bean和子对话框(包含列表)相关联。
我的要求是每当我点击链接打开子对话框时,我都需要强制重置列表(对象)清除。
在父bean中尝试了以下操作,但没有工作。
FacesContext facesContext = FacesContext.getCurrentInstance();
childBean = (ChildBean) facesContext.getApplication().evaluateExpressionGet(facesContext,
"#{childBean}", ChildBean.class); childBean.setEmployeeList(null);
使用primefaces 3.5和jsf 2.0