how to disable back arrow in a form

Preethi5
Tera Expert

hi Team,

Is it possible to disable/hide the back arrow button (marked in red) in a form.

find_real_file.png 

Appreciate your help in this.

Regards,

Preethi.

 

1 ACCEPTED SOLUTION

Geetanjali Khy2
Mega Guru

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.

find_real_file.png

 

Please check if it is helpful.

View solution in original post

10 REPLIES 10

Gunashekar
Tera Contributor

Hi Geethanjali,

 

Did you find how to use it in later versions. I am on Utah and this code does not work on it.