コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

解決済み

Event listener property used to trigger a function on click of classic dialog tab

Avatar

Level 2

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

@Deleted Account 

1 受け入れられたソリューション

Avatar

正解者
Community Advisor

@Helen_DD 

Use activate event. The event will be called with panel as parameter.

Screenshot 2021-03-03 at 11.53.04 PM.png

元の投稿で解決策を見る

4 返信

Avatar

Community Advisor

$("a[aria-controls='<YOUR TAB ID >']").click(function() {

//logic here

}

Avatar

Administrator
@SureshDhulipudi, you are such a phenomenal help to the AEM Community.


Kautuk Sahni

Avatar

正解者
Community Advisor

@Helen_DD 

Use activate event. The event will be called with panel as parameter.

Screenshot 2021-03-03 at 11.53.04 PM.png

Avatar

Level 2
This worked. Thanks a lot.