Validation Rules - Nintex Mobile form

  • 5 December 2016
  • 1 reply
  • 1 view

Badge +1

Validation Rules - Nintex Mobile form

Hi

I have a mobile form that requires a Date/Time Validation rule that ensures that the date supplied is in the past.

This currently works as a desktop from but as a mobile it does not.

I used the advice provided by Manfred Lauer in the thread @How to compare current datetime to a datetime field on form? 

The validation rule I am using is  greaterThan({Self},curr_date_time) Message "Test".

196250_pastedImage_2.png

When the mobile form is used the item is submitted without any validation message appearing.

I have tested on an android and windows phone.

Any suggestions out there?

Thanks

Rob


1 reply

Userlevel 5
Badge +14

I have found following way the most reliable to compare dates.

it works both on desktop and mobile

convertToDate(DateEntryCtrl) < convertToDate(CurrentDateCtrl)

both DateEntryCtrl and CurrentDateCtrl are DateTime controls

Reply