Hey there,
I'm trying to reset a variable each time a user clicks on a different tab in a tabbed container. I added an event handler "on click" for the tabbed container, selected the variable and set the value to null. But in fact, when I change the tab, the variable is not nulled. I realized though, when I set the event handler "on change", it works as expected. However, it is essential for my use case that the variable is changed only if a user clicks on a tab (I use row actions on other tabs to jump to another tab and filter the tables, therefore I "hand over" the row id in the variable - and for this case I need the variable to remain the value).
How can I make the event handler "on click" to reset the variable when a user clicks a tab?