hello –
using this example, is there any way to change the event behavior where when the checkbox itself is clicked, only the ‘checkChange‘ event is executed, but when you click the coffee-name, the ‘select‘ event is executed, and not the checkChange?
it would appear that when {checkboxes:true}
is selected, the checkChange
event is executed but not the select
event.
in other words, i would like to see the following (if possible):
checkbox clicked: checkbox is toggled, checkChange
is executed and select
is NOT executed.
coffee-name clicked: checkbox is NOT toggled, select
event is executed and checkChange
is NOT executed.