- 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 12:27 AM
Hi Santhosh,
The following should be helpful:
https://www.servicenowguru.com/system-ui/glidedialogwindow_popup_record_list/
https://servicenowguru.com/system-ui/glidedialogwindow-quickforms/
Mark my answer correct & Helpful, if Applicable.
Thanks,
Sandeep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2022 12:41 AM
Hi,
are you saying you want to open an UI page and show reference field inside it?
If yes then this is possible.
Can you share what did you start with and where are you stuck?
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 01:01 AM
function showWindow(){
var dialog = new GlideModal("sys_user");
dialog.setTitle("User Details");
//dialog.setSize(900,800);
dialog.setWidth(1200);
dialog.render();
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2022 01:43 AM
Hi,
you can use this
function showWindow(){
var dialog = new GlideDialogWindow('show_list');
dialog.setTitle('Users');
dialog.setPreference('table', 'sys_user_list');
dialog.setPreference('sysparm_view', 'default');
}
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader