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

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

Mark Solution

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

解決済み

Page properties cq dialog sbumit or success event AEM 6.4 touch UI

Avatar

Level 1

Hi All,

I tried dialog-success and cq-dialog-submit event for page properties dialog submission in event AEM 6.4 touch UI.

But looks like it is not triggering this events for page properties. But, it is working for component dialog submission.

Thanks.

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

Avatar

正解者
Level 1

I ran into the same problem.  The page properties dialog does not work like other component dialogs.  After some digging I found that this worked for me:

$document.on('foundation-form-submitted', '.granite-form-saveactivator-form', function(ev, success) {

     if(success) {

          // form submission was successful

          // (after submit code here)

     }

});

元の投稿で解決策を見る

3 返信

Avatar

Level 10

Could you check if this js code is defined in a clientlib that has "categories" as "cq.authoring.dialog"?

Avatar

Community Advisor

I think, your clientlibs are not getting loaded.

Please check below to see how to trigger events when you outside dialog.

How to display Saving when click the Create button if not finish?

Arun Patidar

AEM LinksLinkedIn

Avatar

正解者
Level 1

I ran into the same problem.  The page properties dialog does not work like other component dialogs.  After some digging I found that this worked for me:

$document.on('foundation-form-submitted', '.granite-form-saveactivator-form', function(ev, success) {

     if(success) {

          // form submission was successful

          // (after submit code here)

     }

});