[SSE] Fix drag and drop of pivot fields
This commit is contained in:
parent
a7474c601d
commit
3cc7a739d9
|
@ -201,7 +201,7 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
getDragElement: function(value) {
|
getDragElement: function(value) {
|
||||||
this._dragEl = $('<div style="font-weight: bold;position: absolute;left:-10000px;">' + value + '</div>');
|
this._dragEl = $('<div style="font-weight: bold;position: absolute;left:-10000px;z-index: 10000;">' + value + '</div>');
|
||||||
$(document.body).append(this._dragEl);
|
$(document.body).append(this._dragEl);
|
||||||
return this._dragEl[0];
|
return this._dragEl[0];
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue