Custom validation function in Nintex Forms

  • 22 January 2018
  • 1 reply
  • 94 views

Badge +1

Hi All,

I'm trying to figure out a way in nintex forms to use a "Custom validation Function" which will validate a column to make sure  it has Full Name(which require at least one character, a space and a second character).

Any help is appreciated.

Thanks


1 reply

Userlevel 5
Badge +14

for this kind of validation it is the most suitable to use regular expressions. a pattern like this should do the trick

^[A-Za-z]+s[A-Za-z]+$

for an example on how to use custom validation see documentation

https://help.nintex.com/en-US/nintex2013/help/#Forms/RootCategory/Controls/Nintex.Forms.Controls.SingleLineTextBox.htm%3… 

Reply