Hi,
When I implement a dragEnd event handler for a list box there is this event argument event.args.dropTargetElement. How to get the corresponding list box component instance from the dropTargetElement so that I can call the methods of the target list box component i.e. clearSelection? I need to clear selection (or possible do something else) of the drop target listbox. I am using Angular version of jqWidgets (example in Javascript version might help as well).
html:
<jqxListBox
..
(onDragEnd)="dragEnd($event)">
ts:
dragEnd(ev) {
ev.args.dropTargetElement.clearSelection(); // this doesn't work
}