1 つの Bean に関連付けられた親ウィンドウと、別の Bean に関連付けられた子ダイアログ (リストを含む) があります。
私の要件は、リンクをクリックして子ダイアログを開くたびに、クリアされたリスト(オブジェクト)を強制的にリセットする必要があることです。
親ビーンで以下を試してみましたが、うまくいきませんでした。
FacesContext facesContext = FacesContext.getCurrentInstance();
childBean = (ChildBean) facesContext.getApplication().evaluateExpressionGet(facesContext,
"#{childBean}", ChildBean.class); childBean.setEmployeeList(null);
primefaces 3.5 と jsf 2.0 を使用