Hi,
I’m trying to implement conditional layouts based on both the user and the value of a field.
Scenario:
I have two users — User 1 and User 2. Both can access the Case entity.
So the layout should depend on:
I’m trying to implement conditional layouts based on both the user and the value of a field.
Scenario:
I have two users — User 1 and User 2. Both can access the Case entity.
- When the category field (in the Case entity) is not "Closed":
- User 1 should see Layout 1
- User 2 should see Layout 2
- When the category field is "Closed":
- User 1 should see Layout 3
- User 2 should see Layout 4
So the layout should depend on:
- The current user, and
- The value of a specific field (e.g., category)
Is this kind of conditional layout setup possible in EspoCRM (either in the main UI or portal)?
If yes, what's the best way to achieve this? Through custom views, metadata conditions, or dynamic layout scripts?
Comment