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

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

Mark Solution

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

解決済み

Trigerring in cq:dialog

Avatar

Level 5

Can I trigger this clear button

1695294_pastedImage_0.png

using javascript that has a category of cq.authoring.dialog?
I'm trying to achieve something like
$(document).on("click","slide2", function (e) {

     // tab3 file clear triggered.

})

So when I click my slide 3 again, it sould be empty.

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

Avatar

正解者
Level 5

Thanks but I was looking for this.

$(document).on("foundation-contentloaded", function (e) {

     $tar = $(".cq-dialog-file-upload", e.target);

     $($tar.closest('coral-fileupload').find('button')[1]).trigger("click")

}

It works but tell me if I'm doing something wrong.

元の投稿で解決策を見る

3 返信

Avatar

Level 10

Add those when .dialog-ready event gets triggered.

Avatar

正解者
Level 5

Thanks but I was looking for this.

$(document).on("foundation-contentloaded", function (e) {

     $tar = $(".cq-dialog-file-upload", e.target);

     $($tar.closest('coral-fileupload').find('button')[1]).trigger("click")

}

It works but tell me if I'm doing something wrong.

Avatar

Level 10

If you're trying to hit 'Clear' via code on dialog load/ready, this is the way to move forward..