Using 7.0.3, when I click on the dropdownMenu button in the header row, the entire column is selected. This appears to be by design. I want to prevent this selection when the user clicks the dropdownMenu button.
In attempting to work around the issue, I found (2) things that thought would work but don’t:
- Add hook for
afterDropdownMenuShow
. Only the dropdownOptions is passed, and since the ClickEvent is not passed this means that I can’t stopPropagation(). - Get eventManager and addEventListener… unfortunately the select fires before my listener, so stopping it does nothing.
What is the proper way to prevent an entire column from being selected when you click the dropdownMenu button in the header row?