0 Replies Latest reply on Dec 20, 2008 1:05 PM by arielfernando

    jsFunction with JSF 1.2_11

      Hi all,

      I update my jsf libraries from mojarra 1.2_10 to 1.2_11, but now jsFunction stop working.
      Same code works fine with 1.2_10.

      Test code:

      
      <h:form>
       <a4j:commandButton value="Search Button"
       actionListener="#{searchFiles.search}"
       reRender="idTabPanel"
       onclick="setAjaxLoadingValues()">
       </a4j:commandButton>
      </h:form>
      
      <a4j:form>
       <a4j:jsFunction name="setAjaxLoadingValues"
       reRender="idModalPanelAjaxLoading">
       <a4j:actionparam
       name="text"
       value="Query in progress, please wait."
       assignTo="#{ajaxLoading.text}" />
       </a4j:jsFunction>
       </a4j:form>
      
      


      setText function at ajaxLoading bean is never called.

      I try putting an action / actionListener at jsFunction tag, but same result.

      Regards,