How do i make "not held" meetings invisible in the calendar
Meeting not held
Collapse
X
-
In Administration > Entity Manager > Meeting > Formula > Before Save Custom Script you can create a formula that will clear the assignedUser and users fields:
PHP Code:if (status == 'Not Held') {
$i = array\length(usersIds) - 1;
while ($i >= 0) {
usersIds = array\removeAt(usersIds, $i);
$i = $i - 1;
};
entity\clearAttribute('assignedUserId');
}
Last edited by victor; 04-14-2025, 01:48 PM.
Comment