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