- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2024 05:47 PM
Hello Team
I have a custom table that has all these fields. I have teacher role and student role.
- I want the teacher can see everything on the table (read and edit) - I use table.None for read and edit. It works fine. Teacher can see all fields & edit all the fields.
- I want the student to be able to read field1 through field4 but not field5 through field7. Field5 through field7 shouldn't be display to the student. I'm not sure how to do that. Thanks for your help
-
Custom table
Field1
Field2
Field3
Field4
Field5 Field6 Field7
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2024 09:04 PM
Hi @huyjor ,
1. Write a table level acl for student which is table.none It is working fine
2. Write 3 field level acl to hide the field (i.e) Field5 to Field7. Write a Read acl and add the student role and in script write answer = false.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2024 09:06 AM
Can you try using table.none and table.*
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2024 10:13 AM
I tried that before. It shows nothing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2024 09:04 PM
Hi @huyjor ,
1. Write a table level acl for student which is table.none It is working fine
2. Write 3 field level acl to hide the field (i.e) Field5 to Field7. Write a Read acl and add the student role and in script write answer = false.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2024 08:50 AM
Awesome, It works. I want to know how do you make the section name invisible?. I have a section name for Field5 through field7. I got field5-7 disappear but the section name is still there.