creating a validator page

hi,

I am creating a validator page.
the user types in a protocol number, the result is entered into a table, I want to show the user a message stating that the protocol does not exist.
the connector database functioning normally.

How do I do that?

Hello,

Do you use a subscription version ?
If yes, do the following : create a TEXT widget. Add a contengencie and add in the perimeter your table. In the “script to run when value change”, put your validator code. In the protocol is correct, then do nothing. Else, display your message.
Now, each time user will set a new protocol number, check will be done.
Finish the configuration by saying that this text must be empty.

If no, you don’t have any simple way to produce a message. A validator page (same with a validator) will return only True or False.
So, you can :

  • integrate a contingencie mecanism using jquery
  • develop your control in javascript (or in jquery) and update a text message. The validator will be on “the text message must be empty”
  • add a new step in your process, to check your number, and return a message in a variable, then loop back in your process to the first activity

Hello, could you please edit your question and add some details about what you want to achieve ? maybe a mockup, or something like that ?