The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxCheckBox widget requires the following files:
$("#jqxcheckbox").jqxCheckBox(‘check’);To set a property(option), you need to pass the property name and value(s) in the jqxCheckBox's constructor.
$("#jqxcheckbox").jqxCheckBox({ checked: true });To get a property(option), you need to pass the property name to the jqxCheckBox's constructor.
var checked = $("#jqxcheckbox").jqxCheckBox('checked');To bind to an event of a UI widget, you can use basic jQuery syntax. Let’s suppose that you want to get the CheckBox's state after the user clicks it. The example code below demonstrates how to bind to the ‘change’ event of jqxCheckBox.
$("#jqxcheckbox").on('change', function (event) { var checked = event.args.checked; alert('checked: ' + checked); });