Skip to main content
Nintex Community Menu Bar

validation rule on dropdown control

  • April 12, 2016
  • 2 replies
  • 19 views

Forum|alt.badge.img+4

I need to apply a validation rule on dropdown control. is there any easy way to use Nintex "Rules" ?

Condition i need to check is - fire the validation if the value of dropdown  = "Please select value...",

2 replies

Forum|alt.badge.img+14
  • Scholar
  • April 12, 2016

yes, that's exactly what rules are designed for.

'Please select value...' means there is no item/option selected from a dropdown list, so you can test it for emptiness like

isNullOrEmpty(dropdown)


Forum|alt.badge.img+4

Thank you Marian.