- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2022 12:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2022 07:26 AM
@Santhosh
It won't show since it's an OOB way on how to show table list
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2022 03:49 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2022 03:55 AM
Hi,
if the table is huge it would take time
try to give query as per your requirement
function showWindow(){
var dialog = new GlideDialogWindow('show_list');
dialog.setTitle('Users');
dialog.setPreference('table', 'sys_user_list');
dialog.setPreference('sysparm_view', 'default');
dialog.setPreference('sysparm_query', 'active=true^company.name=ACME');
}
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2022 04:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2022 05:50 AM
Hi,
you forgot the line to render
function showWindow(){
var dialog = new GlideDialogWindow('show_list');
dialog.setTitle('Users');
dialog.setPreference('table', 'sys_user_list');
dialog.setPreference('sysparm_view', 'default');
dialog.setPreference('sysparm_query', 'active=true^company.name=ACME');
dialog.render();
}
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2022 07:17 AM