Is it possible to set the state of the checkbox but not have the bound events notified?
$(‘body’.).append(“
✓ All
“)
slectAllCheckbox = $(‘#selectAllCheckbox’)
selectAllCheckbox.jqxCheckBox( checked: @search.results.selected.all, disabled: true )
selectAllCheckbox.bind ‘checked’, @search.results.selected.addAll
selectAllCheckbox.bind ‘unchecked’, @search.results.selected.clear
I would like to be able to do something like the following and not have the ‘checked’ or ‘unchecked’ event raised:
slectAllCheckbox.jqxCheckBox({ checked: true, propagateEvents: false })
slectAllCheckbox.jqxCheckBox({ checked: false, propagateEvents: false })
Do you have any hooks in the API I could leverage to obtain this functionality?