Documentation
Getting Started
jqxCheckBox
The jqxCheckBox widget displays a check box that allows the end-user to select a true, false or indeterminate condition.Every UI widget from jQWidgets toolkit needs its JavaScript files to be included in order to work properly.
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:
<head><link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css"/><script type="text/javascript" src="../../scripts/jquery-1.11.1.min.js"></script><script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script><script type="text/javascript" src="../../jqwidgets/jqxcheckbox.js"></script> <script async src="https://www.googletagmanager.com/gtag/js?id=G-2FX5PV9DNT"></script><script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'G-2FX5PV9DNT');</script></head>
The next step is to create a div element or input element with type attribute set to "checkbox" within the body of the html document.
<div id='jqxcheckbox'</div>
The last step is to initialize the widget by adding the following script to the html document:
$("#jqxcheckbox").jqxCheckBox({ width: 120, height: 25 });
To call a function(method), you need to pass the method name and parameters(if any) in the jqxCheckBox’s constructor.
To set a property(option), you need to pass the property name and value(s) in the jqxCheckBox's constructor.$("#jqxcheckbox").jqxCheckBox(‘check’);
To get a property(option), you need to pass the property name to the jqxCheckBox's constructor.$("#jqxcheckbox").jqxCheckBox({ checked: true });
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.var checked = $("#jqxcheckbox").jqxCheckBox('checked');
$("#jqxcheckbox").on('change', function (event) {var checked = event.args.checked;alert('checked: ' + checked);});
Basic Sample
<!DOCTYPE html><html lang="en"><head> <title id='Description'>jQuery CheckBox Sample</title> <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="../../scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcheckbox.js"></script> <script type="text/javascript"> $(document).ready(function () { // create jqxCheckBox. $("#jqxcheckbox").jqxCheckBox({ width: 120, height: 25 }); // bind to change event. $("#jqxcheckbox").bind('change', function (event) { var checked = event.args.checked; $('#log').html('checked: ' + checked); }); }); </script><script async src="https://www.googletagmanager.com/gtag/js?id=G-2FX5PV9DNT"></script><script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'G-2FX5PV9DNT');</script></head><body class='default'> <div id='jqxcheckbox'> Click me</div> <div id='log'> </div></body></html>