Wijmo UI for the Web
changed Event
wijmo.checkbox.wijcheckbox Namespace > options type : changed Event
Standard jQuery event object
Information about an event
A function that is called when the checked state changes.
Syntax
$(function () {
    
          var options; // Type:  wijmo.checkbox.wijcheckbox.options
    
          // Create a new wijcheckbox widget
          $(".selector").wijcheckbox(options);
    
          // Get a previously created wijcheckbox widget instance
          var widgetInstance; // Type:  wijmo.checkbox.wijcheckbox
          widgetInstance = $(".selector").data("");
    
          // Set changed event handler function
    widgetInstance.option("changed", function (e, data) { } );
});
changed = function ( 
   e : jQuery.Event,
   data : IChangedEventArgs
) { };

Parameters

e
Standard jQuery event object
data
Information about an event
See Also

Reference

options type
wijcheckbox jQuery Widget