- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-21-2023 07:01 AM
I know how to display a UI page in a modal window using "GlideModal"
Is there a way to make it full screen instead of a modal window?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-21-2023 10:13 PM - edited ‎11-21-2023 10:14 PM
You could also just redirect to a UI Page by using its name and appedning ".do" at the end.
For example if the name of my UI page is "testpage" I could use this url to open it:
https://<your_instance_name>.service-now.com/testpage.do
or if I need it within the New Experience frame:
https://<your_instance_name>.service-now.com/now/nav/ui/classic/params/target/testpage.do
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-21-2023 02:36 PM
Hi @bonsai ,
I think you are using a UI action to create the modal. What I can recomend is to create the window page using the HTML for your page:
var pdfWindow = window.open('', '', 'width="auto",height="auto"');
pdfWindow.document.open();
pdfWindow.document.write(htmlContent); //In the htmlContent is the html to load your page
pdfWindow.document.close();
Is a way to render your page, just remember to make your client script "Isolate Script" to false
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-22-2023 12:52 AM
Does htmlContent input HTML directly?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-21-2023 10:13 PM - edited ‎11-21-2023 10:14 PM
You could also just redirect to a UI Page by using its name and appedning ".do" at the end.
For example if the name of my UI page is "testpage" I could use this url to open it:
https://<your_instance_name>.service-now.com/testpage.do
or if I need it within the New Experience frame:
https://<your_instance_name>.service-now.com/now/nav/ui/classic/params/target/testpage.do