Discussions

 View Only
  • 1.  read only date field after save

    Posted 04-26-2018 15:49
    How to make a date field read only after user selects a date and clicks on Save.
    User should not be able to change the date after they click on Save.


  • 2.  RE: read only date field after save

    Posted 04-26-2018 15:58
    You can use a form rule to detect if the record has been saved.

    But for some reason, form rules do not allow the use of the [Record ID#] field.

    You can make a formula numeric field call Record ID# mirror with a formula of

    [Record ID#]

    And use it in a form rule

    When multiple conditions
    The user is in the Role. (Role)
    The Record ID# mirror is > 0

    Make read only [Date field]

    And make the field required on the form.


  • 3.  RE: read only date field after save

    Posted 04-26-2018 18:33
    Awesome...tried it out and it works...
    Thanks Mark!!!