是否可以执行像bar.show()
PrimeFaces 通知栏这样的 JavaScript 操作和像#{managedBean.foo}
单击 JSF 组件的按钮一样的托管 bean 操作?
问问题
1628 次
1 回答
0
检查primefaces commandButton的vdl:http: //www.primefaces.org/docs/vdl/3.4/primefaces-p/commandButton.html
对 bean 使用 action 或 actionListener,例如对客户端 javascript 回调使用 onclick
编辑(添加示例):
<h:form id="formId">
<p:commandButton value="Button" update="formId" id="ajax"
actionListener="#{myBean.serverSideBeanMethod}" onclick="clientSideJavaScriptFunction()" />
</h:form>
于 2012-11-21T07:44:47.667 回答