cancel
Showing results for 
Search instead for 
Did you mean: 

How to disable a BUTTON on the form?

former_member202077
Participant
0 Kudos

Hello

I am trying to disable my_button (regular) by usinf this.disabled = true by seeing in google, but, its not working!

Pls. let me know how to either disabel a button or invisible/hide a button, syntax pls. with syntax errors pls.

Thank you

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

To disable a button try the below script.

this.access = "readOnly";

To make it hidden or invisible try the below script.

this.presence = "invisible";

this.presence = "hidden";

Thanks,

Aravind

Answers (0)