Examples of WTooltip


Examples of org.wicketstuff.jwicket.tooltip.WTooltip

    effect.setSpeed(250);
    add(effect);

   

    WTooltip toolTip = new WTooltip("You may drag one of the droppable elements on this page into this rectangle. Otherwise you can drag this rectangle itself and drop it somewhere.").setCssClass("toolTip");


    draggable = new DraggableAndDroppableBox("draggableAndDroppable", model);
    draggable.add(toolTip);
    draggable.add(dragger);
View Full Code Here

Examples of org.wicketstuff.jwicket.tooltip.WTooltip

    public TestPage() {
        super();

        Image wTooltipImage = new Image("wTooltipImage", new PackageResourceReference(TestPage.class, "QuestionMark.jpeg"));
        wTooltipImage.add(new WTooltip("this is de wToolTipText"));
        this.add(wTooltipImage);

        /* Demo for a simple menu bar ***************************************************/

        /* Menu 1 with some static links */
 
View Full Code Here

Examples of org.wicketstuff.jwicket.tooltip.WTooltip

        effect.setTimes(2);
        effect.setSpeed(250);
        add(effect);


        WTooltip toolTip = new WTooltip("You may drag one of the droppable elements on this page into this rectangle. Otherwise you can drag this rectangle itself and drop it somewhere.").setCssClass("toolTip");


        draggable = new DraggableAndDroppableBox("draggableAndDroppable", model);
        draggable.add(toolTip);
        draggable.add(dragger);
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.