| Name | Type | Default | 
                
                    | animationShowDelay | Number | 250 | 
                
                    | 
                            
                                Sets or gets the delay of the fade animation when the CheckBox is going to be checked.
                             Code examples
                                Set the animationShowDelayproperty. $('#jqxCheckBox').jqxCheckBox({ animationShowDelay: 200 }); 
 
                                Get the animationShowDelayproperty. var animationShowDelay = $('#jqxCheckBox').jqxCheckBox('animationShowDelay'); 
 | 
                
                    | animationHideDelay | Number | 300 | 
                
                    | 
                            
                                Sets or gets the delay of the fade animation when the CheckBox is going to be unchecked.
                             Code examples
                                Set the animationHideDelayproperty. $('#jqxCheckBox').jqxCheckBox({ animationHideDelay: 200 }); 
 
                                Get the animationHideDelayproperty. var animationHideDelay = $('#jqxCheckBox').jqxCheckBox('animationHideDelay'); 
 | 
                
                    | boxSize | String | "13px" | 
                
                    | 
                            
                                Sets or gets the checkbox's size.
                             Code examples
                                Set the boxSizeproperty. $('#jqxCheckBox').jqxCheckBox({ boxSize:"15px" }); 
 
                                Get the boxSizeproperty. var boxSize = $('#jqxCheckBox').jqxCheckBox('boxSize'); 
 | 
                
                    | checked | Boolean | false | 
                
                    | 
                            
                                Sets or gets the check state.
                            Possible Values:(when the hasThreeStates property value is true) 'true'
 'false'
 'null'
 Code examples
                                Set the checkedproperty. $('#jqxCheckBox').jqxCheckBox({ checked:true }); 
 
                                Get the checkedproperty. var checked = $('#jqxCheckBox').jqxCheckBox('checked'); 
 | 
                
                    | disabled | Boolean | false | 
                
                    | 
                            
                                Sets or gets whether the CheckBox is disabled.
                             Code examples
                                Set the disabledproperty. $('#jqxCheckBox').jqxCheckBox({ disabled:true }); 
 
                                Get the disabledproperty. var disabled = $('#jqxCheckBox').jqxCheckBox('disabled');
 | 
                
                    | enableContainerClick | Boolean | true | 
                
                    | 
                            
                                Sets or gets whether the clicks on the container are handled as clicks on the check box.
                             Code examples
                                Set the enableContainerClickproperty. $('#jqxCheckBox').jqxCheckBox({enableContainerClick :true }); 
 
                                Get the enableContainerClickproperty. var enableContainerClick = $('#jqxCheckBox').jqxCheckBox('enableContainerClick'); 
 | 
                
                    | groupName | String | "" | 
                
                    | 
                            
                                Sets or gets the group name. When this property is set, the checkboxes in the same group behave as radio buttons.
                             Code examples
                                Set the groupNameproperty. $('#jqxCheckBox').jqxCheckBox({groupName :"Panel" }); 
 
                                Get the groupNameproperty. var groupName = $('#jqxCheckBox').jqxCheckBox('groupName'); 
 | 
                
                    | height | Number/String | null | 
                
                    | 
                            
                                Sets or gets the jqxCheckBox's height.
                             Code examples
                                Set the heightproperty. $('#jqxCheckBox').jqxCheckBox({height:"400px"});
 
                                Get the heightproperty. var height = $('#jqxCheckBox').jqxCheckBox('height');
 | 
                
                    | hasThreeStates | Boolean | false | 
                
                    | 
                            
                                Sets or gets whether the checkbox has 3 states - checked, unchecked and indeterminate.
                             Code examples
                                Set the hasThreeStatesproperty. $('#jqxCheckBox').jqxCheckBox({ hasThreeStates:true }); 
 
                                Get the hasThreeStatesproperty. var hasThreeStates = $('#jqxCheckBox').jqxCheckBox('hasThreeStates'); 
 | 
                
                    | locked | Boolean | false | 
                
                    | 
                            
                                Sets or gets whether the checkbox is locked. In this mode the user is not allowed to check/uncheck the checkbox.
                             Code examples
                                Set the lockedproperty. $('#jqxCheckBox').jqxCheckBox({locked :true }); 
 
                                Get the lockedproperty. var locked = $('#jqxCheckBox').jqxCheckBox('locked'); 
 | 
                
                    | rtl | Boolean | false | 
                
                    | 
                            Sets or gets a value indicating whether widget's elements are aligned to support locales using right-to-left fonts. Code example
                                Set the rtlproperty. $('#jqxCheckBox').jqxCheckBox({rtl : true}); 
 
                                Get the rtlproperty. var rtl = $('#jqxCheckBox').jqxCheckBox('rtl'); 
 | 
                
                    | theme | String | '' | 
                
                    | 
                            
                                Sets the widget's theme.
                             
                            jQWidgets uses a pair of css files - jqx.base.css and jqx.[theme name].css. The base stylesheet creates the styles related to the widget's layout like margin, padding, border-width, position. The second css file applies the widget's colors and backgrounds. The jqx.base.css should be included before the second CSS file.
                                                                                In order to set a theme, you need to do the following:
                                                                                 | 
                
                    | width | Number/String | null | 
                
                    | 
                            
                                Sets or gets the jqxCheckBox's width.
                             Code examples
                                Set the widthproperty. $('#jqxCheckBox').jqxCheckBox({width:"200px"});
 
                                Get the widthproperty. var width = $('#jqxCheckBox').jqxCheckBox('width');
 | 
                
                    |  | 
                
                    | checked | Event |  | 
                
                    | 
                            
                                This event is triggered when the checkbox is checked.
                             Code examples
                                Bind to the checkedevent by type: jqxCheckBox. $('#jqxCheckBox').on('checked', function (event) { // Some code here. }); 
 | 
                
                    | change | Event |  | 
                
                    | 
                            
                                This is triggered when the checkbox's state changes from one state to another.
                             Code examples
                                Bind to the changeevent by type: jqxCheckBox. $('#jqxCheckBox').on('change', function (event) { var checked = event.args.checked;   var type = event.args.type; // keyboard, mouse or null depending on how the value was changed. }); 
 | 
                
                    | indeterminate | Event |  | 
                
                    | 
                            
                                This event is triggered when the checkbox's checked property is going to be null.
                             Code examples
                                Bind to the indeterminateevent by type: jqxCheckBox. $('#jqxCheckBox').on('indeterminate', function (event) { // Some code here. }); 
 | 
                
                    | unchecked | Event |  | 
                
                    | 
                            
                                This event is triggered when the checkbox is unchecked.
                             Code examples
                                Bind to the uncheckedevent by type: jqxCheckBox. $('#jqxCheckBox').on('unchecked', function (event) { // Some code here. }); 
 | 
                
                    |  | 
                
                    | check | Method |  | 
                
                    | 
                            
                                Checks the checkbox.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                Invoke the checkmethod. $('#jqxCheckBox').jqxCheckBox('check');
 | 
                
                    | disable | Method |  | 
                
                    | 
                            
                                Disables the checkbox.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                Invoke the disablemethod. $('#jqxCheckBox').jqxCheckBox('disable');
 | 
                
                    | destroy | Method |  | 
                
                    | 
                            
                                Destroys the widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the destroythod. $('#jqxCheckBox').jqxCheckBox('destroy'); 
 | 
                
                    | enable | Method |  | 
                
                    | 
                            
                                Enables the checkbox.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                Invoke the enablemethod. $('#jqxCheckBox').jqxCheckBox('enable');
 | 
                
                    | focus | Method |  | 
                
                    | 
                            
                                Focuses the widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the focusmethod. $('#jqxCheckBox').jqxCheckBox('focus'); 
 | 
                
                    | indeterminate | Method |  | 
                
                    | 
                            
                                Sets the indeterminate state(checked property value is going to be null after calling this method).
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                Invoke the indeterminatemethod. $('#jqxCheckBox').jqxCheckBox('indeterminate');
 | 
                
                    | render | Method |  | 
                
                    | 
                            
                                Renders the widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the rendermethod. $('#jqxCheckBox').jqxCheckBox('render'); 
 | 
                
                    | toggle | Method |  | 
                
                    | 
                            
                                Toggles the check state. This method is automatically called when the user clicks the checkbox.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                Invoke the togglemethod. $('#jqxCheckBox').jqxCheckBox('toggle');
 | 
                
                    | uncheck | Method |  | 
                
                    | 
                            
                                Unchecks the checkbox.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                Invoke the uncheckmethod. $('#jqxCheckBox').jqxCheckBox('uncheck');
 | 
                
                    | val | Method |  | 
                
                    | 
                            
                                Sets or gets the value.
                             
                                
                                    
                                        Return Value 
                                Boolean
                                            | Parameter | Type | Description |  
                                            | value(optional) | Boolean |  |  Code example
                                Invoke the valmethod. 
                            // Get the value.
                                                                                 var value = $("#jqxCheckBox").jqxCheckBox('val');
 
                            // Get the value using jQuery's val()
                                                                                 var value = $("#jqxCheckBox").val();
 
                            // Set value.
                                                                                 $("#jqxCheckBox").jqxCheckBox('val', true);
 
                            // Set value using jQuery's val().
                                                                                 $("#jqxCheckBox").val(true);
 |