- 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 03:18 PM
opps your are correct... I had a typo .....
this does work....
javascript: 'active=true^company =' + current.variables.business_app_company;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2024 01:23 PM
Here's a trick: look at the list view of the target table, build out the filter you want then right-click the Breadcrumb and select "Copy query" to get the encoded query for use in scripts or your Reference qualifier.