G
Godfrey Sorita
Guest
Please replace the content of the script component with the code below: script type="text/javascript" function setCalendarFilters() { /* Description: Use to set 'Show' filter Possible values for objectFilter variable: 1. -1 = All Tasks & Events 2. -10 = All Tasks 3. -20 = All Events 4. Object Definition ID = Specific Object(e.g 110006390) */ var objectFilter = '110006358'; $("#rbe_objectsFilter").val(objectFilter); /* Description: Use to set 'Assigned To' filer Possible values for assignedToFilter variable: 1. Me = Only Me 2. ALL_USERS = Any Users 3. R Role ID = Specific role(e.g R90) 4. G Group ID = Specific group(e.g G110007529) */ var assignedToFilter = 'Me'; $("#rbe_assignedToFilter").val(assignedToFilter); } rbf_addOnLoadMethod(setCalendarFilters); rbf_addOnLoadMethod(rbf_refreshData); /script Let me know if it works.
Continue reading...
Continue reading...