//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,
I tried the scenario with our latest version and it works correctly - http://jsfiddle.net/sceu6t9c/.
Which version do you use?
Could you provide a JSFiddle of the described misbehavior so I could further investigate?
I am looking forward to hearing from you.
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.
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.