Crow Canyon Software Forum

Forum Navigation
Please or Register to create posts and topics.

Hide Default Edit Button

Anyone know if  the "Edit" button that appears by default located bottom right corner of Nitro Form can be hidden leaving just the "Cancel"?  Although my users cannot edit the list item due to the read only permissions defined, it's perceived as having the ability to edit the list item.

Bob

 

Hi Bob,
Yes, we can hide the default "Edit" button. Navigate to NITRO Forms designer -> Layouts and Theme section -> Enable "Hide Edit Button" option (see attached image).

 

Uploaded files:
  • Hide-Edit-Button.png

Can this be done dynamically based on a column's value?

Example: if status equal "Done" then hide [Edit] else show [Edit]

Hi Bob,
Currently we do not have the feature to show/hide edit button based on column values. We can use custom script in form event actions to achieve this.

Instructions:
Navigate to list settings -> Crow Canyon NITRO Forms -> Form Event Actions in Advanced Section -> Configure the form event action as shown below:

Script:

setTimeout(function(){$("#btnEdit").hide();
$('[buttontype="edit"]').parent().hide();
}, 100);

 

Uploaded files:
  • FEA1.png
  • FEA2.png

Nice!

Thank You,

Bob