//Initialize
$(
".selector"
).igCombo({
selectionChanged:
function
(evt, ui) {
line 1
}
});
).igCombo(... and it will return
} that is attached to the event.. what I need to know run time is the selectionChanged actually was initialized with function
Hello,
Thank you for contacting us.
You can achieve the desired behavior by getting the value, assigned to selection changed like this:
$(".selector").igCombo("option", "selectionChanged");
Please let me know if you need anything else.
this does work on the native binding but when used on the control bound by knockoutJS it returns null
We use older version that uses enableSelectionChangedUpdate: true, property ( not planning to update at this point of the project)
The event is actually get fired but the expression that you provided returns null .. any thoughts ? Thanks.