Question

Validation in Register page

Hi Team

How to do validations in Register page .please tell me the process how to Achieve that task?

find the attachment below.

Hoping for a positive reply.

Like 0

Like

1 comments

The method is in the "Registration" module in the "onRegisterClick" method. 

else if (this.get("Email").indexOf("@") === -1) {

                            this.showInformationDialog(resources.localizableStrings.InvalidEmail);

Please deploy the application locally and debug it. Find how the system calls the module and the method. Then override the module and modify the system in order to use your module instead of the original one. 

Show all comments