Package com.google.code.jqwicket.ui.droppable

Examples of com.google.code.jqwicket.ui.droppable.DroppableBehavior


     * Builds new wicket's behavior converting appropriate component to jquery droppable.
     *
     * @return
     */
    public static final DroppableBehavior droppable() {
        return new DroppableBehavior();
    }
View Full Code Here


     *
     * @param options
     * @return
     */
    public static final DroppableBehavior droppable(DroppableOptions options) {
        return new DroppableBehavior(options);
    }
View Full Code Here

        super(id);
        initInternal();
    }

    protected void initInternal() {
        super.add(new DroppableBehavior(newDroppableOptions()));
        super.add(new AbstractDefaultAjaxBehavior() {

            private static final long serialVersionUID = 1L;

            @Override
View Full Code Here

TOP

Related Classes of com.google.code.jqwicket.ui.droppable.DroppableBehavior

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.