Package com.liferay.faces.alloy.component.tab

Examples of com.liferay.faces.alloy.component.tab.TabExpandEvent


      if (TabCollapseEvent.TAB_COLLAPSE.equals(eventName)) {
        TabCollapseEvent tabCollapseEvent = new TabCollapseEvent(this, behavior, tab, rowData);
        super.queueEvent(tabCollapseEvent);
      }
      else if (TabExpandEvent.TAB_EXPAND.equals(eventName)) {
        TabExpandEvent tabExpandEvent = new TabExpandEvent(this, behavior, tab, rowData);
        super.queueEvent(tabExpandEvent);
      }
    }

    // Otherwise, queue the specified faces event.
View Full Code Here


      TabCollapseEvent tabCollapseEvent = (TabCollapseEvent) ajaxBehaviorEvent;
      Accordion accordion = (Accordion) tabCollapseEvent.getComponent();
      methodExpression = accordion.getTabCollapseListener();
    }
    else if (ajaxBehaviorEvent instanceof TabExpandEvent) {
      TabExpandEvent tabExpandEvent = (TabExpandEvent) ajaxBehaviorEvent;
      Accordion accordion = (Accordion) tabExpandEvent.getComponent();
      methodExpression = accordion.getTabExpandListener();
    }

    if (methodExpression != null) {
View Full Code Here

TOP

Related Classes of com.liferay.faces.alloy.component.tab.TabExpandEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.