Hello JenkeNg,
You could try to use different approaches.
For example, you could directly bind to the event of this widget.
Please, take a look at this code snippet:
tool.on("select", function (event) {
let args = event.args;
let index = args.index;
let item = args.item;
// get item's label and value.
let label = item.label;
let value = item.value;
});
Or if you want to bind to event of newer instance then you could try this one:
let combobox = jqwidgets.createInstance('#selector','jqxComboBox',{
...
});
combobox.addEventHandler("open", _ => {
console.log("open");
});
I hope this will help.
Best Regards,
Hristo Hristov
jQWidgets team
https://www.jqwidgets.com