Hello community,
I managed to assign a task to a particular user in a team via the Javascript filter:
I have 40 locations (variable drop-down list), and 4 people who must approve the tasks depend on the location (each approval has 10 locations associated with it).
I followed this solution:
switch ($ util.getValue ( 'location_field')) {
box 'LOC1':
$ result = team.findMembersByRole ('Approve1');
break;
}
But given the number of locations and assumptions I have (with a limit of 1000 characters) it is impossible for me to finish. is there a trick to bypassing this character limit? I thought of creating several filters but we can only use one filter at a time ...
Your ideas and proposals are welcome,
Thank you !