Calling Javascript Function After Finishing Bean Method
I want to execute javascript function after bean actionListener.I am using JSF 1.2, richfaces 3.3.In my case I want to display a chart after finishing bean's method.My table tabis
Solution 1:
I resolved this problem by using <a4j:commandButton>
and `:
<h:form>
<h:commandButton value="Click" actionListener="#{bean.monActionListener}" reRender="tab" oncomplete="alert('ok')">
<h:form>
<a4j:outputPanel id="tab">
<h:form id="sortie">
<rich:dataTable id="tabb" rendered="#{not empty bean.listSortie}"
value="#{bean.listSortie}" var="raison">
<h:column headerClass="headerleftfacet">
<h:outputText value="#{raison[0]}">
</h:outputText>
</h:column>
<h:column headerClass="headermiddlefacet">
<h:outputText value="#{raison[1]}" >
</h:outputText>
</h:column>
</rich:dataTable>
<h:form>
</a4j:outputPanel>
Post a Comment for "Calling Javascript Function After Finishing Bean Method"