Skip to main content
Nintex Community Menu Bar

Prevent Dates from being changed

  • September 19, 2017
  • 6 replies
  • 15 views

Forum|alt.badge.img+1

Hi,

Is there a way to disable or prevent a date column from being changed after the user enters the date and saves the form?

See image below.  For example ....I would like the "Planned Start Date" to be disable after the user saves the data

207890_pastedImage_1.png

Thanks in advance ! 

6 replies

Forum|alt.badge.img+16

Can you add an expression to the enabled section of the control when ID is not null AND {Self} is not null? Can't test at this moment as not at machine but let me know how you go?


Forum|alt.badge.img+6
  • September 19, 2017

As suggested by Cassy Freeman , add the following condition

not(isNullOrEmpty({Self})) && not(isNullOrEmpty({ItemProperty:ID}))

but instead of adding it as an expression to the enabled section of the control add it to a new rule because the former does not have the name control tab (using which you will add the {Self} property)


Forum|alt.badge.img+16

Ah good shout!! Without sitting at my machine I was just trying to imagine what it would look like!! 


Forum|alt.badge.img+6
  • September 20, 2017

Still you did a pretty good job with the logic !!


Forum|alt.badge.img+1
  • Author
  • September 20, 2017

Thank you all for the help, it works perfectly ! 


Forum|alt.badge.img+6
  • September 20, 2017

Glad to hear that !

Could you please update the thread as solved.