2 Replies Latest reply on Nov 20, 2009 9:16 AM by ramprasadhtv

    Simple Toggle Panel Issue in 3.3.2 RF

      Hi

      We are using a simple toggle panel inside a data table to list some data. Each toggle panel inturn has one data table to display one row of data.

      We use the opened property to set whether true or false. This was working as of 3.2.1 jar. However, when we migrated to 3.3.2 jar, it is by default opened and any change to opened property set in the xhtml does not work.

      can you please help us? Is this an issue or are we missing something

      code snippet
      <a:richDataTableNoStyle value="#{reportingBean.categoryNames}" var="category">
      <a:richColumn styleClass="richColumnNoPadding">
      <a:richSimpleTogglePanel switchType="client" opened="false"
      label="#{reportingBean.categoryLblMap[category]}">
      <a:richDataTableWithCursor
      value="#{reportingBean.categoryReportMap[category]}"
      var="report">
      <a:richColumn id="reportName">
      <a:ajaxCommandLink id="reportNameValue"
      styleClass="jsfOutputTextInTable"
      value="#{text[report.name]}"
      action="#{reportingBean.executeReport}">
      <a4j:actionparam name="repIdParam"
      assignTo="#{reportingBean.reportId}"
      value="#{report.objectId}" />
      </a:ajaxCommandLink>
      </a:richColumn>
      </a:richDataTableWithCursor>
      </a:richSimpleTogglePanel>
      </a:richColumn>
      </a:richDataTableNoStyle>