Examples of ExtruderOptions


Examples of com.google.code.jqwicket.ui.mb.extruder.ExtruderOptions

  public ExtruderPage() {
    add(new ExtruderWebMarkupContainer("extruderTop", "extruder top"));

    add(new ExtruderWebMarkupContainer("extruderBottom",
        new ExtruderOptions("extruder bottom")
            .position(Position.BOTTOM).width(350)
            .extruderOpacity(1)));

    ExtruderWebMarkupContainer extruderLeft = new ExtruderWebMarkupContainer(
        "extruderLeft", new ExtruderOptions("Our network ",
            "_static/extruder/extruderLeft.html")
            .position(Position.LEFT).width(300)
            .extruderOpacity(0.8f).hidePanelsOnClose(false)
            .accordionPanels(false));

    extruderLeft.getOptions().onExtContentLoadEvent(
        $(extruderLeft).chain("openPanel"));
    add(extruderLeft);

    add(new ExtruderWebMarkupContainer("extruderLeft1",
        new ExtruderOptions("What\\'s new in this part of world",
            "_static/extruder/extruderLeft1.html")
            .position(Position.LEFT).width(300)
            .extruderOpacity(0.8f)));

    add(new ExtruderWebMarkupContainer("extruderLeft2",
        new ExtruderOptions("content in place").position(Position.LEFT)
            .width(300).positionFixed(false).top(0)
            .extruderOpacity(0.8f)));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.