do not open node after drag and drop

Hi,



Currently, the node will automatically open after the drag and drop finished.

May I know how can I disable the open node function so that the target node will not open automatically after drag and drop success?



This is caused by specific of d-n-d in treegrid and can’t be easily changed.
You can prevent such behavior by adding next code to grid initialization

    grid.attachEvent(“onDrop”,function(sid,tid,rid){
       this.closeItem(rid);
    })