[SSE] Fix drag and drop of pivot fields

This commit is contained in:
JuliaSvinareva 2022-11-02 15:43:16 +03:00
parent a7474c601d
commit 3cc7a739d9

View file

@ -201,7 +201,7 @@ define([
},
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);
return this._dragEl[0];
},