Hi,
I have a question regarding TargetPickerDialogWidget.
I'd like to provide a possibility to select multiple objects and then collect them for further actions.
Here is the code so far
var picker = new csui.widget.TargetPickerDialogWidget({
placeholder: "#picker",
connector: connector,
selectRows: "multiple",
done: function( args ) {console.log(args);}
});
picker.on("childSelected", function () {alert(1);});
picker.show();
Function on "done" only returns single object (first one selected).
on childSelected event doesn't work
I want this this for dialog not for the normal targetpickerwidget
Thanks
Uldis