- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2024 07:29 AM - edited 12-04-2024 07:29 AM
If your users have "Always show top navigation" turned on:
It can be difficult to have a UI Page open a small pop-up (for quick editing) that doesn't contain the ServiceNow header and application navigator, which take up a lot of real estate.
I just wanted to pass along my solution if it helps anyone else:
window.open("test_record.do?sys_id=-1", "lookup", "width=500,height=500, scrollbars=yes");
The important part is the 2nd parameter - which specifies the window name. If you name it as lookup, then the ServiceNow header and application navigator will not appear in the pop-up! 🙂
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2024 07:30 AM
window.open("test_record.do?sys_id=-1", "lookup", "width=500,height=500, scrollbars=yes");
The important part is the 2nd parameter - which specifies the window name. If you name it as lookup, then the ServiceNow header and application navigator will not appear in the pop-up!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2024 07:30 AM
window.open("test_record.do?sys_id=-1", "lookup", "width=500,height=500, scrollbars=yes");
The important part is the 2nd parameter - which specifies the window name. If you name it as lookup, then the ServiceNow header and application navigator will not appear in the pop-up!