How to make only 2 fields editable and other fields read only on list view.

Pratiksha Lang1
Kilo Sage

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.

9 REPLIES 9

priyasunku
Kilo Sage

Hi @Pratiksha Lang1 

 

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

Community Alums
Not applicable

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.

AnandMahajan_0-1677747877933.png

 

if you find this helpful mark this correct and helpful.

 

Regards

Anand

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?

Community Alums
Not applicable

So, Do you want to remove the fields from List Layout Slush bucket available fields, Am I getting it right?