Disable Field not working from a Report

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
  1. for each REC in Access  [User_ID == zoho.loginuser]
  2. {
  3.     alert("Level : " + REC.Access_Level);
  4.     if (REC.Access_Level.toLong()  <  5)
  5.     {
  6.         disable Site_Name;
  7.         disable Seaware_Code;
  8.         disable Seaware_Detail;
  9.         disable Floor;
  10.         disable Location;
  11.     }
  12. }