ICEfaces
  1. ICEfaces
  2. ICE-2193

PanelCollapsible actionListener fires twice when collapsing

    Details

    • Type: Bug Bug
    • Status: Closed
    • Priority: Major Major
    • Resolution: Fixed
    • Affects Version/s: 1.6.1, 1.7, 1.7.1
    • Fix Version/s: 1.7.2
    • Component/s: ICE-Components
    • Labels:
      None
    • Environment:
      OS X 10.4.10
      Eclipse 3.3.0
      Java 5


      Description

      When closing a panelCollapsible it seems to fire the actionListener two times.

      Page:
      <ice:form>
          <ice:panelCollapsible actionListener="#{test.testAction}">
              <f:facet name="header">
                  <ice:panelGroup>
                      <ice:outputText value="Header" />
                  </ice:panelGroup>
              </f:facet>
              <ice:panelGroup>
                  <ice:outputText value="Some test text" />
              </ice:panelGroup>
          </ice:panelCollapsible>
      </ice:form>

      Backing Bean:
      public class Test {
           
          private int _counter;
           
          public Test(){
          }
          
          public void testAction(ActionEvent event) {
              _counter++;
              System.out.println("Count is " + _counter);
          }
      }

        Activity

          People

          • Assignee:
            Unassigned
            Reporter:
            Chris Keefer
          • Votes:
            1 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: