I need to implement the drag and drop function in the table table and the SAPUI5 tree .
I have a table with the set of names that the user must have drag and drop, and the table of the tree that should accept the drag and drop object, so it is defined as the drop area .
I used JqueryUI to make the controls like drag and drop, which works fine.



The problem is that I drag the name into the tree table, which is hidden behind the table, which makes the user embarrassed.
, , - , CSS, SAPUI5.



:
var oMemberId;
$(".selector Table").draggable({
helper: "clone",
cursor: "pointer",
revert: "invalid",
zIndex: 9999,
start: function(event) {
oSelectedId = this.parentNode.previousSibling.firstChild.childNodes[0].value;
}
}).disableSelection();
$(".selector treetable").droppable({
drop: function(event){
var dataLevel=(this.attributes["data-sap-ui-level"].value);
var oDropAreaId = this.childNodes[2].textContent;
}
}).disableSelection();
?