On a Combobox with Checkboxes, I would like to differentiate clicking on the checkbox from clicking on the text.
On ListBox and DropDownList, the Select event includes args.originalEvent.target.localName.
With this, I can determine whether the user clicked on the checkbox or the text to select the list item.
With Combobox, args.originalEvent does not appear to be available (at least, as of 4.1.1).
I’ve tried putting a div in the text area and putting a click listener on it, but that does not appear to be working.
Are there any thoughts on how this differentiation could be achieved?
Are there any plans to include args.originalEvent in Combobox the select event (or has it been done since 4.1.1)?