From cf0b0f07fb5f8442487cbcfa26088af19c7de023 Mon Sep 17 00:00:00 2001 From: junfengye Date: Wed, 2 Jul 2014 22:01:46 +0800 Subject: [PATCH] Update _Dnd.js need to reset the notSelectText flag when dissmissDndReady, otherwise if we just mouseover the header and do no drag, then we can not select text in grid --- modules/dnd/_Dnd.js | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/dnd/_Dnd.js b/modules/dnd/_Dnd.js index 2092551fb..b910d6883 100644 --- a/modules/dnd/_Dnd.js +++ b/modules/dnd/_Dnd.js @@ -185,6 +185,7 @@ define([ if(this._dndReady && !this._dndBegun){ this._loadSelectStatus(); this._dndReady = 0; //0 as false + t._source.notSelectText = 0; domClass.remove(win.body(), 'gridxDnDReadyCursor'); } },