Hi All,
On Click of a tab in a classic UI dialog, I want a function to be triggered (ex: display a message inside the dialog on click on the tab2). Which event listener property can I use for this?
Similar to render, afterrender, beforerender events etc, for above situation, what can be the solution?
Thanks in advance
Solved! Go to Solution.
Views
Replies
Total Likes
Use activate event. The event will be called with panel as parameter.
$("a[aria-controls='<YOUR TAB ID >']").click(function() {
//logic here
}
Views
Replies
Total Likes
Views
Replies
Total Likes