Package org.wicketstuff.yui.markup.html.anim.stretch

Examples of org.wicketstuff.yui.markup.html.anim.stretch.StretchPanel


  /**
   * Construct.
   */
  public StretchPage()
  {
    StretchPanel sp = new StretchPanel("stretch", "My Expanding Calendar")
    {
      @Override
      protected Component getStretchPanel(String id)
      {
        return new Calendar(id);
      }
    };

    sp.setCollapsedHeight(0);
    sp.setExpandedHeight(140);
    sp.setDelayTime(2);
    sp.setDefaultState(StretchPanel.EXPANDED);
    sp.setEasing(YuiEasing.easeOutStrong);
    add(sp);
  }
View Full Code Here

TOP

Related Classes of org.wicketstuff.yui.markup.html.anim.stretch.StretchPanel

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.