How to get query of filter conditions of list view in UI action
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2024 09:37 PM - edited 07-16-2024 09:41 PM
Hi everyone,
I want to get the query of filters created on list view in UI action.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2024 09:59 PM
Hi @Yu_G ,
Please check the below doc:
//GlideList2 - getQuery(Boolean orderBy, Boolean groupBy, Boolean fixed, Boolean all)
Mark this as Helpful / Accept the Solution if this helps
Mark this as Helpful / Accept the Solution if this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2024 09:59 PM
Hi @Yu_G
Refer to the below link.
Thanks
dgarad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2024 10:22 PM
Hi @Yu_G ,
You can try (g_list.getQuery(false, false, true)) - It will return current query on the form.
And if you are looking just for the fixed queries , go with [getFixedQuery()]