Some AG Grid events not firing #3004
Replies: 2 comments
-
Hi @thetableman, That's weird! The "columnHeaderClicked" event doesn't seem to be triggered at all. Sometimes there are problems with serializing the event arguments. But in this case even a pure JavaScript event handler doesn't work: aggrid.on('columnHeaderClicked', js_handler='console.log(event)') But other events like "columnMoved" do work. So maybe column headers need to be somehow configured "clickable"? |
Beta Was this translation helpful? Give feedback.
0 replies
-
See #3801 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Question
Consider the below based on the Nice GUI documentation example.
The
cellClicked
event works but thecolumnHeaderClicked
doesn't. The Nice GUI documentation suggests that all AG Gridevents
should work. Equally the AG Grid documentation lists several 'column' and 'header' basedevents
but most, includingcolumnHeaderClicked
, fail to trigger.Has anyone had any experience with AG Grid
events
other thancellClicked
?Beta Was this translation helpful? Give feedback.
All reactions