checks whether a checkbox is checked
value | any | the value to check |
boolean | true, if the value is positive |
rules:{ // component name is used to apply the rule to it
"accept": webix.rules.isChecked
}
You can call this function explicitely to perform the related check, as follows:
if(webix.rules.isChecked(value)){
// your logic
}