a4j:status – The Status Tag

The Status Tag can be used as a kind of Indication to the Client about the current Status of the Request, like whether the Request is still being processed by the Server or the Request has been served.

<body>
<f:view>
<h:form>
<h:inputText value=”#{bean.text}”>
<a4j:support event=”onkeyup” ajaxSingle=”true”></a4j:support>
<a4j:status startText = “S” stopText = “R”></a4j:status>
</h:inputText>
<br />
</h:form>
</f:view>
</body>

 

Leave a comment