How to make only 2 fields editable and other fields read only on list view.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2023 12:43 AM
Scenario 1 - How to make only 2 fields editable and other fields read only on list view.
Scenario 2 - make field read only on list view if the field value is not empty, if it is empty then keep it editable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2023 12:56 AM
You can try list_edit ACL and in the script you can give the condition current.field_name!=''
If my answer solved your issue, please mark my answer as ✅Correct & 👍Helpful
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2023 01:07 AM
Hi @Pratiksha Lang1 ,
You can achieve this by creating ACL,
Scenario 1 - How to make only 2 fields editable and other fields read only on list view.
For first scenario, create a list_edit ACL on table , in the script add answer = false
than create list_edit ACL for specific field , in the script add answer = true , this will allow users to edit only specific field.
Scenario 2 - make field read only on list view if the field value is not empty, if it is empty then keep it editable.
Use the below ACL, instead of write operation use list_edit.
if you find this helpful mark this correct and helpful.
Regards
Anand
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2023 01:26 AM
Hi @Community Alums The thing is I also want to remove the fields of a extended table from slush bucket available fields. How can I achieve that also with the above requirement?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2023 01:37 AM
So, Do you want to remove the fields from List Layout Slush bucket available fields, Am I getting it right?