Hi,
You can use the disable task to disable all fields after showing the alert.
Ruben
Zoho Creator Support
Read More
You can use the disable task to disable all fields after showing the alert.
- user = Users [User_ID == zoho.loginuserid];
- if (user.Role != "Administrator")
- {
- alert("Sorry, you don't have permissions to use this feature.");
- disable field1;
- disable field2;
- disable field3;
- disable field4;
- disable field5;
- }
Ruben
Zoho Creator Support
Read More