Wijmo UI for the Web
changed Event
Standard jQuery event object
Information about an event
A function that is called when the checked state changes.
Syntax
Javascript (Usage) 
$(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) { } );
});
Javascript (Specification) 
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

 

 


© 2013 All Rights Reserved.

Send comments on this topic.