How can I change the calendar's color of meetings with respect to a "type" field of a custom entity?
Color in calendar
Collapse
X
-
I tried this formula but it gives me an error on the parentheses
ifThen(entity\isAttributeChanged('status'),
ifThen(status == 'Planned', entity\setAttribute('color', '#0ea5e9'));
ifThen(status == 'Held', entity\setAttribute('color', '#10b981'));
ifThen(status == 'Not Held', entity\setAttribute('color', '#eab308'));Comment
Comment