lock down user ability to delete Settings

SOLVED

We have a string of issues lately with users accidently hitting the red X in the toolbar which is for deleting the Setting from the dropdown.  Is there a security right to disable that button for a group?  Thank you

Parents
  • +1
    verified answer

    If the user has Normal or Supervisory rights to the form, then they have the ability to save and delete settings. The only exception is the BI interface because settings can be individual to the user. The only way to secure against a user deleting the settings is to change their form rights to Display Only or Excluded. You could create a workaround in Form Activate using Customizer but you would need to code or apply to the user and/or group to which it would be applicable:

    Form.Controls("tbrMain").ButtonEnabled("K6")=False

Reply
  • +1
    verified answer

    If the user has Normal or Supervisory rights to the form, then they have the ability to save and delete settings. The only exception is the BI interface because settings can be individual to the user. The only way to secure against a user deleting the settings is to change their form rights to Display Only or Excluded. You could create a workaround in Form Activate using Customizer but you would need to code or apply to the user and/or group to which it would be applicable:

    Form.Controls("tbrMain").ButtonEnabled("K6")=False

Children