Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Module pool validation and display mode

former_member219850
Participant
0 Likes
955

Hi,

I have attached a screen shot, in which one input field is used to type email address of receiver.

when I enter incorrect email address validation error comes.

But I am unable to re-enter the address again in the field it goes in display mode.

what should I do??

thanks

darshan

Message was edited by: Matthew Billingham - meaningful title

1 ACCEPTED SOLUTION
Read only

ipravir
Active Contributor
0 Likes
907

Hi Darshan,

Put your e-mail validation code in PAI and Use below code, before user_command module.

1.

CHAIN.

     field e_MAIL   MODULE mod_email_validatie.

ENDCHAIN.

Or.

2 FIELD e_mail MODULE mod_email_validate.

To keep your fields open for input after display an error, always use CHAIN..ENDCHAIN if multiple fields validation and for single Field , write a module based on the FIELD name.

Regards.

Praveer.

5 REPLIES 5
Read only

former_member219850
Participant
0 Likes
907

Read only

0 Likes
907

hii Darshan

in your validation condition write else statement and call screen again in that else.

hope it will solve your problem

Regards

Gaurav

Read only

ipravir
Active Contributor
0 Likes
908

Hi Darshan,

Put your e-mail validation code in PAI and Use below code, before user_command module.

1.

CHAIN.

     field e_MAIL   MODULE mod_email_validatie.

ENDCHAIN.

Or.

2 FIELD e_mail MODULE mod_email_validate.

To keep your fields open for input after display an error, always use CHAIN..ENDCHAIN if multiple fields validation and for single Field , write a module based on the FIELD name.

Regards.

Praveer.

Read only

0 Likes
907

thanks a lot..

Read only

0 Likes
907

This message was moderated.