Can I trigger this clear button
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.
Solved! Go to Solution.
Views
Replies
Total Likes
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.
Views
Replies
Total Likes
Add those when .dialog-ready event gets triggered.
Views
Replies
Total Likes
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.
Views
Replies
Total Likes
If you're trying to hit 'Clear' via code on dialog load/ready, this is the way to move forward..