dhtmlDataView Drag

Hi…
How can i decrease size of dhtmlDataView item while dragging…in attached file i want to decrease the size of item which is shown by arrow…, please suggest solution…

Thanks
Seenu

Hi,

you may use the approach mentioned here:

docs.dhtmlx.com/doku.php?id=dhtm … beforedrag

For example:

view.attachEvent(“onBeforeDrag”, function (context, ev){
context.html = “

”+this.type.template(this.get(context.source))+"
";
return true;
});

Hi…Alexander

Thank you very much…, it worked…

Thanks
Seenu

Hi…

Is there any method to make the dragged item transparent…

Regards
Seenu

You may define context.html as you need. The provided solution is just an example.