Package org.odlabs.wiquery.ui.draggable

Examples of org.odlabs.wiquery.ui.draggable.DraggableContainment


   
    //WebClientInfo clinetInfo = (WebClientInfo)WebSession.get().getClientInfo();
    //  if browser is not IE allow dragging columns headers.
    DraggableBehavior draggableBehavior = new DraggableBehavior();
    draggableBehavior.setRevert(new DraggableRevert(RevertEnum.INVALID));
    draggableBehavior.setContainment(new DraggableContainment("'#"+getTable().getMarkupId() +"_tTH'"));   
    draggableBehavior.setZIndex(100);
    draggableBehavior.setSnap(new DraggableSnap(true))
    add(draggableBehavior);
    DroppableAjaxBehavior<DraggableTitle<E>> droppableAjaxBehavior = new DroppableAjaxBehavior<DraggableTitle<E>>() {
     
View Full Code Here

TOP

Related Classes of org.odlabs.wiquery.ui.draggable.DraggableContainment

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.