When I drag from jqxTree if I create a property “tag” in the node with assigned a my object for example
treenode = { icon: node.IsDigital ? “\\assets\\images\\DigitalVar.png”: “\\assets\\images\\AnalogVar.png”, label: “node1”, expanded: false,tag:myobject, items: itms};
I would like in the Ondrag event have this object in the event.args property is it possibile or I can have only the label? I look for event.args tree but I can’t discover my original object. I want link an object for each tree node and in the drag event obtain this object to complete drop on another container, label is too poor information!!
Best Regards