Examples of DragProxyDetachedEventHandler


Examples of org.thechiselgroup.choosel.dnd.client.DragProxyDetachedEventHandler

        /*
         * Sends a popup-mouse-out if a dnd operation that was started over the
         * popup is finished.
         */
        // TODO dispose registration?
        popup.addHandler(new DragProxyDetachedEventHandler() {
            @Override
            public void onDragProxyDetached(DragProxyDetachedEvent event) {
                if (isEnabled()) {
                    state.onPopupMouseOut(DragSupportingPopupManager.this);
                }
View Full Code Here

Examples of org.thechiselgroup.choosel.dnd.client.DragProxyDetachedEventHandler

            super(text, enabledCSSClass, item.getResources(), type, element);

            this.text = text;
            this.item = item;

            addHandler(new DragProxyDetachedEventHandler() {
                @Override
                public void onDragProxyDetached(DragProxyDetachedEvent event) {
                    item.reportInteraction(new VisualItemInteraction(
                            Type.DRAG_END));
                    dragEnabler.removeAvatar();
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.