I kind of found a workaround but I don’t really like it.
$(“.jqx-widget”).each(function () {
if ($(this).attr(“role”) == “combobox”) {
$(this).on(“change”, function (event) {
// Do things
});
};
});
If someone has a better way, please let me know.
Thanks!