- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2017 06:36 PM
When I apply the conditions individually, they both execute successfully. When I try to string them together, it does not work. Is there some magical way to string them together or is it not possible? I think I read every wiki and community article published on the subject of encoded query strings but couldn't find how to string them together. Thank you for any assistance.
This works: javascript: 'training_room.site='+current.variables.Training_Site';
This works: javascript: 'attendee_type='+current.variables.attendee_type';
This doesn't work: javascript: ' training_room.site='+current.variables.Training_Site' +'^ 'attendee_type='+current.variables.attendee_type';
Solved! Go to Solution.
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2017 06:56 PM
Hi Mike,
You have an extra ' after ^. Remove that.
Roehl B. Tablada
ServiceNow Technical Architect at Accenture
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2017 06:56 PM
Hi Mike,
You have an extra ' after ^. Remove that.
Roehl B. Tablada
ServiceNow Technical Architect at Accenture
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2017 07:04 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2017 07:59 PM