Form editability

0
I have a form. Some users can edit data on it, other users are only allowed to view the data. The user is the CurrentObject. Is there a possibility to steer editability settings of an entire dataview or gridview based on a value somewhere in the CurrentObject? Or from a Microflow?
asked
3 answers
1

You can influence it with setting read/write access rights on the entity per userrole.

answered
0

Gerard

An approach I have used is to have a table in the form with 2 rows and a single column. Have an editable version of the dataview in one row, and a read only version in the other row. Then you can use an attribute in the current object to show or hide the rows.

Mike

answered
0

Using read/write access is not an option here, since depending on criteria the user may be authorized to edit a specific record, whilst for other records he may not. Having two rows for every item is probably the best solution, as long as there is no way to set editability on an entire form, datagrid or so. Thanks!

answered