- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2024 11:59 AM
what is the syntax to add active=true to this reference qualifier
javascript: 'company =' + current.variables.business_app_company
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2024 12:35 PM - edited 10-01-2024 12:37 PM
That should work, or it's a little cleaner with one less concatenation to put it first
'active=true^company=' + current.variables.business_app_company
with the javascript colon prefix
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2024 12:23 PM
is this what i need?
javascript: 'company =' + current.variables.business_app_company+'^active=true';
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2024 12:35 PM - edited 10-01-2024 12:37 PM
That should work, or it's a little cleaner with one less concatenation to put it first
'active=true^company=' + current.variables.business_app_company
with the javascript colon prefix
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2024 03:06 PM
it doesnt work if do it this way:
'active=true^company=' + current.variables.business_app_company
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2024 03:10 PM
this was the only way i could get it to work
javascript: 'company =' + current.variables.business_app_company+'^active=true';