是否可以通过单击JSF组件按钮来执行PrimeFaces通知栏的bar.show()
和#{managedBean.foo}
等托管bean操作等JavaScript操作?
答案 0 :(得分:0)
检查primefaces commandButton的vdl:http://www.primefaces.org/docs/vdl/3.4/primefaces-p/commandButton.html
为bean使用action或actionListener,例如onclick for clientside javascript callback
编辑(添加示例):
<h:form id="formId">
<p:commandButton value="Button" update="formId" id="ajax"
actionListener="#{myBean.serverSideBeanMethod}" onclick="clientSideJavaScriptFunction()" />
</h:form>