我嘗試從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"
呢?
此標記不存在屬性「更新」。 – Omar