Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list
SOLVED

On dialog submit display alert if textfields are emplty

Avatar

Level 3

We have 2 textfields (firstname and secondname). If either of the 2 textfields are empty, on dialog submit, display an alert. 

Thanks in advance

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

HI @Dolly 

  as per your requirement you need to add your custom login on dialog submit .Sharing example snippet (this is just a example code, will not get compiled as is )

$(document).on("dialog-ready", function() {
    $(document).on("click", ".cq-dialog-submit", function(e) {

        var $form = $(this).closest("form.foundation-form");
        var message;
        var fui = $(window).adaptTo('foundation-ui'),
            options = [{
                id: 'ok',
                text: 'OK',
                primary: true
            }];

        var field1= $form.find("[name*='./field1']").val();
        var field2= $form.find("[name*='./field2']").val();

   //PUT YOUR LOGIC HERE
           message = "ADD ERROR MESSAGE HERE";
        }
        if (message) {
            fui.prompt("Error", message, "default", options);
            return false;
        }

});

 

 

1 Reply

Avatar

Level 10

Hi @Dolly ,

Add the below attribute to the textfield node in dialog

required="true"

Below screenshot for your reference:

Screen Shot 2022-04-12 at 8.17.14 PM.png

Avatar

Correct answer by
Community Advisor

HI @Dolly 

  as per your requirement you need to add your custom login on dialog submit .Sharing example snippet (this is just a example code, will not get compiled as is )

$(document).on("dialog-ready", function() {
    $(document).on("click", ".cq-dialog-submit", function(e) {

        var $form = $(this).closest("form.foundation-form");
        var message;
        var fui = $(window).adaptTo('foundation-ui'),
            options = [{
                id: 'ok',
                text: 'OK',
                primary: true
            }];

        var field1= $form.find("[name*='./field1']").val();
        var field2= $form.find("[name*='./field2']").val();

   //PUT YOUR LOGIC HERE
           message = "ADD ERROR MESSAGE HERE";
        }
        if (message) {
            fui.prompt("Error", message, "default", options);
            return false;
        }

});