Just updated my devexpress version to 12.1 and now all draggable elements hightlights background elements on Chrome (20.0.1132.47 m).
For example when I drag splitter all page is blinking, when I’m dragging ASPxPivotGrid or ASPxGridView field, field sometimes highlights and nearby elements highlights then I drag past them. In ASPxGridview when I’m re-sizing columns and if I move my mouse a little bit to up or down almost all header highlights. There are also unneeded highlight when I’m dragging fields in ASPxPivotGrid customization form..
BTW, in IE9, FF11, Opera 11.6 and it works fine.
Is it devexpress bug? How can I fix it so dragging would not highlight background elements? Maybe some kinda global jquery function would help?
You can prevent selections in the whole document using:
You can enable selections again by removing that event handler:
You could disable selections during
mousedownon an element, and enable it again duringmouseup. It doesn’t matter where the user triggersmouseup, so attach that one todocument: http://jsfiddle.net/Wdj6w/.