2014-01-27 77 views
0

我嘗試從bean動態創建<h:commandButton>。它必須看起來像:如何將「更新」屬性添加到動態創建的命令按鈕

<h:commandButton actionListener="#{bean.okUpdate("1234")}" title="ok" value="ok" id="ok_1234" update:"otherComponent"/> 

到目前爲止,在bean代碼來創建這個按鈕:

HtmlCommandButton okUpdate = new HtmlCommandButton(); 
    okUpdate.setLabel("ok"); 
    okUpdate.setValue("ok"); 
    okUpdate.setId("okUpdate_" + uuid); 
    okUpdate.setActionExpression(createMethodExpression(String.format("#{bean.okUpdate('" + uuid + "')}", "ok"), null, String.class)); 

- >哪些代碼我要補充,使命令按鈕包括update:"otherComponent"呢?

+1

此標記不存在屬性「更新」。 – Omar

回答

1

使用Primefaces命令按鈕類Reference here

org.primefaces.component.CommandButton. 

它有一個 「update」 價值expression

+0

哇,非常感謝 – seinecle

+0

不客氣,先生。 – Makky

相關問題