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 (
: jQuery.Event,
: IChangedEventArgs
) { };
Parameters
- e
- Standard jQuery event object
- data
- Information about an event
See Also