hclleapforum

Open full view…

Remove/disable the print and delete buttons in the stages

srir
Mon, 08 Feb 2021 16:50:55 GMT

Can u please suggest,how to remove/disable the print and delete buttons on the top of the page. As we are using stages, and these options are not needed while we are in the middle of stage. For example:- we have 3 stage, one start, 2 approval, 3 confirmation. We are seeing the print and delete buttons on the approval stage. How to either remove them or disable them. Currently in the approval stage, the approver receives email with the "link to the form".

christopher_dawes
Mon, 08 Feb 2021 23:35:11 GMT

The print/delete buttons are part of a toolbar that you can disable by adding this css to your application: .lfMn.lfSingleFormArea .hidetitlebar .lfFormTitleBar .toolbar-list {display: none} You can do this by adding it to your existing css file (if you use one), or you can add an html item and enter it like: <style> .lfMn.lfSingleFormArea .hidetitlebar .lfFormTitleBar .toolbar-list {display: none} </style>

srir
Wed, 10 Feb 2021 19:58:51 GMT

Thanks chris. It worked