p:commandButton
リストにいくつかの値を追加する必要があるクリックがあります。私の管理対象 Bean では、追加する必要がある値を検証しています。値が false であると検証された場合は、確認ポップアップを表示する必要があります。これは私のコードです -
<p:commandButton id="add" value="Add" type="submit" action="#{bean.doAdd}" ajax="false"
update=":List"/>
そしてBeanで、「追加」ボタンをクリックすると、
public String doAdd() throws Exception {
if(response != null) {
if(keyList.contains(response)) {
if(!responseList.contains(response)) {
responseList.add(response);
}
} else {
//Have to display confirmation popup.
}
response = "";
}
return response;
}
私はjsf 2.0とprimefaces 3.0を使用しています。ビーンからポップアップを表示する方法を教えてください。