Disable Field not working from a Report
I am trying to disable certain fields from being edited, but when I access the record via the Edit button on a List Report, the disable function is not applied ?
Any thoughts
- for each REC in Access [User_ID == zoho.loginuser]
- {
- alert("Level : " + REC.Access_Level);
- if (REC.Access_Level.toLong() < 5)
- {
- disable Site_Name;
- disable Seaware_Code;
- disable Seaware_Detail;
- disable Floor;
- disable Location;
- }
- }