Package com.extjs.gxt.ui.client.dnd

Examples of com.extjs.gxt.ui.client.dnd.GridDropTarget


    cp.add(grid2, data);

    new GridDragSource(grid);
    new GridDragSource(grid2);

    target = new GridDropTarget(grid);
    target.setAllowSelfAsSource(false);

    target2 = new GridDropTarget(grid2);
    target2.setAllowSelfAsSource(false);

    add(cp);
    setStyleAttribute("margin", "10px");
  }
View Full Code Here


    grid.setStripeRows(true);
    cp.add(grid);
   
    new GridDragSource(grid);
   
    GridDropTarget target = new GridDropTarget(grid);
    target.setAllowSelfAsSource(true);
    target.setFeedback(Feedback.INSERT);
   

    add(cp);
  }
View Full Code Here

    cp.setSize(400, 300);
    cp.setLayout(new FitLayout());
    cp.add(grid);

    new GridDragSource(grid);
    new GridDropTarget(grid);

    add(cp);
  }
View Full Code Here

        childrenGrid = new Grid<GWTJahiaNode>(store, new ColumnModel(columnConfigList));
        childrenGrid.setBorders(true);
        childrenGrid.setHeight(400);
        new GridDragSource(childrenGrid);
        GridDropTarget target = new GridDropTarget(childrenGrid);
        target.setAllowSelfAsSource(true);
        target.setFeedback(DND.Feedback.INSERT);


        childrenGrid.mask();

        if (node != null) {
View Full Code Here

TOP

Related Classes of com.extjs.gxt.ui.client.dnd.GridDropTarget

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.