- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2019 05:03 AM
hi Team,
Is it possible to disable/hide the back arrow button (marked in red) in a form.
Appreciate your help in this.
Regards,
Preethi.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2019 05:43 AM
Hi Preethi,
It is possible to disable back button on the form. For that, run the below Client Script:
function onLoad()
{
document.getElementsByClassName("btn btn-default icon-chevron-left navbar-btn")[0].style.display="none";
}
I have applied above script on Employee table.
Now, you can see there is no back button on the form.
Please check if it is helpful.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2019 05:06 AM
Hi,
please use the solution described in the thread below, it should work fine:
If I have answered your question, please mark my response as correct so that others with the same question in the future can find it quickly and that it gets removed from the Unanswered list.
Thank you
Cheers
Alberto
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2023 04:13 AM
Hi Alberto,
This solution is not working on Utah version. Can you help?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2019 05:43 AM
Hi Preethi,
It is possible to disable back button on the form. For that, run the below Client Script:
function onLoad()
{
document.getElementsByClassName("btn btn-default icon-chevron-left navbar-btn")[0].style.display="none";
}
I have applied above script on Employee table.
Now, you can see there is no back button on the form.
Please check if it is helpful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2019 07:11 AM
Hi Geethanjali,
Thanks for the quick reply.
But the below code is not working for me.
I have applied the below onLoad client script in our custom table. Still back arrow is displaying.
Any suggestions?
Regards,
Preeti.