Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function(){
  
  new Ext.dd.DragSource("drag");
  new Ext.dd.DropTarget("drop", {
    notifyDrop : function(source, event, data) {
      this.getEl().appendChild(source.getEl());
    }
  });
});


  Drag Me

  Drop Here