Use the refresh method to set the checkbox element's style.
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("");
var returnsValue; // Type: any
// Parameters
var e; // Type: object
returnsValue = widgetInstance.refresh(e);
});
function refresh(
: object
) : any;
Parameters
- e
- The event that fires the refresh the checkbox.
See Also