Datagrid editable column: only on certain status

1
Hi,  Can you make a column (cell) in a data grid editable on a certain condition? For example, I would like the cell only to be editable when the row has a certain status. See my screenshot of what I have today. Thanks!  
asked
2 answers
2

Hi Veronique,

You might succeed if you use access rules on the entity ExpenseNote in the domain model.

So you would make 2 rules for the same userrole, where in the first rule the user has write access on EmailCustomer based on a status, for instance:

[Status = ‘CONCEPT’]

and a second rule where the user only has read access based on another status, for instance:

[Status = ‘SUBMITTED’] 

answered
0

Thanks Sjors, that makes sense! 

Veronique 

answered