Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
8920
igCombo - get the event function
posted
Here what doc is showing how to use/initialize  'selection changed event 
.......
 
//Initialize
$(".selector").igCombo({
    selectionChanged: function (evt, ui) {
    line 1 
       line 2 
      .......
    }
});
What would be an expression that would return reverence to the event processing function - i.e  $(".selector").igCombo(...  and it will return 
function (evt, ui) {
    line 1 
       line 2 
      .......
    } that is attached to the event.. what I need to know run time is the selectionChanged actually was initialized with function 
Parents Reply Children
No Data