0

我正在使用jsf 1(不支持 ajax),并且我正在使用带有commandLinkcommandButtom的操作方法,我想知道如何在操作回发到服务器期间显示加载图像并在服务器端处理(回发)完成时隐藏它。

请指教。

4

1 回答 1

1

您可以提供onclickof<h:commandButton>来显示您的加载指示器,例如:

<h:commandButton ... onclick="showLoadingIndicator()" />

或者,您可以onsubmit使用<h:form>

<h:form ... onsubmit="showLoadingIndicator()" />

这将在单击按钮或提交表单时调用您的 JavaScript 函数,您应该在其中可视化加载指示器。

于 2013-11-06T19:35:36.330 回答