- 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 01:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2022 01:41 AM
Hell0 Santosh,
Create UI page with below code in HTML/XML script field
<g:ui_reference name="user" id="user" table="sys_user_" query="active=true" completer="AJAXTableCompleter" />
Call it in your UI action like below
function yourFunctionName()
{
var dialog = new GlideDialogWindow("your UI page name"); //Render the dialog containing the UI Page 'task_comments_dialog'
dialog.setTitle("Users"); //Set the dialog title
dialog.render(); //Open the dialog
}
For more info on glide dialog window please refer below link
https://servicenowguru.com/system-ui/glidedialogwindow-advanced-popups-ui-pages/
For more info on jelly tags refer this link
Please mark my answer correct if it helps you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2022 03:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2022 04:21 AM
Hello in the glideDialogWindow () did you use the UI page name or the endpoint name?
IF you used UI page name please replace it with end point name
you can find end point field in UI page it self
please try this and let me know
function yourFunctionName()
{
var dialog = new GlideDialogWindow("UI page end point name"); //Render the dialog containing the UI Page 'task_comments_dialog'
dialog.setTitle("Users"); //Set the dialog title
dialog.render(); //Open the dialog
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2022 10:29 AM
hey santosh did it help ?You got the pop up correctly with reference field now?
