1 Reply Latest reply on Oct 9, 2009 5:53 AM by ilya_shaikovsky

    Normal JSF button not woking richfaces 3.3.1 jar when used w

    anoopanooponly

      I have the following code snippet:

      <ui:define name="pageBody">

      <rich:tabPanel switchType="ajax">
      <rich:tab label="First">
      Here is tab #1
      </rich:tab>
      <rich:tab label="Second">
      <a4j:form ajaxSubmit="true">
      <h:commandButton value="aa" />
      <a4j:commandButton value ="bb" />
      </a4j:form>
      </rich:tab>
      <rich:tab label="Third">
      Here is tab #3
      </rich:tab>
      </rich:tabPanel>
      </ui:define>

      am using richfaces 3.3.1 now..so now if i go to second tab and click button
      'aa' which is of h:commandButton . i am getting exception view expired and its appends ' \X2DService' to my URL.If i remove forms ajaxSubmit="true" ,there is no problem.Also this was working fine with 3.3.0 jars. This will also work if i change tab switch type from "ajax" to "server".

      I would like to knw the reason for this error?