Expand my Community achievements bar.

SOLVED

AEM 6.3: createpagewizard clientlib form validation issue

Avatar

Level 5

I have written a custom clientlib that fills in the title on the creation of a page based on the name of the page.

What you get by default: no title --> create button disabled

empty.png

What you get if you type a title manually --> create button enabled

manually.png

What you get if you try to set te value using a clientlib --> create button IS disabled but value set in the textField


clientlib.png
This is my clientlib code:

setTimeout(setTitle, 3000);

function setTitle() {

let title = document.querySelector(titleTextFieldSelector);

title.value = "Value from clientlib";

}

If I remove the timeout and let it execute straight away the value also gets populated and the button is enabled. Why is this happening if I use a timeout?

NOTE: I am using a timeout here instead of the on input event on the name field just to keep things simple for this post

Thanks in advance!

1 Accepted Solution

Avatar

Correct answer by
Level 5

I found the following validation logic:

Screen Shot 2018-02-05 at 11.23.47.png

As you can see the "change" event on an input field will trigger the validation logic to run. So what i've done is triggered the change event from code:

$(titleTextFieldSelector).trigger("change");

Now the button will be enabled

View solution in original post

3 Replies

Avatar

Level 10

Can you log the value of title variable inside setTitle() when using settimeout, I doubt if DOM element you are using is ready when it execute.

Avatar

Correct answer by
Level 5

I found the following validation logic:

Screen Shot 2018-02-05 at 11.23.47.png

As you can see the "change" event on an input field will trigger the validation logic to run. So what i've done is triggered the change event from code:

$(titleTextFieldSelector).trigger("change");

Now the button will be enabled