- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2022 04:41 AM
I have created a simple UI action that creates a GlideModal class and opens a UI page. I havent completed the functionality that I want out of it but right from the start I have a problem opening the UI page. The problem is that when I trigger the UI action there is a message Page not found.
This is the UI action:
And the UI page:
The result:
Any help would be appreciated!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2022 04:48 AM - edited 10-28-2022 04:52 AM
Hi @DIMITRIS IORDAN ,
For calling this page, rather than using name, could you please try using endpoint value as shown in the below screen shot :
Try this :
var new_window = new GlideModal("x_818806_zoom_inte_zoom_window") // End point name without '.do'
new_window .render()
I Hope this helps.
Please mark this helpful if this helps and Accept the solution if this solves your issue.
Regards,
Kamlesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2022 04:48 AM - edited 10-28-2022 04:52 AM
Hi @DIMITRIS IORDAN ,
For calling this page, rather than using name, could you please try using endpoint value as shown in the below screen shot :
Try this :
var new_window = new GlideModal("x_818806_zoom_inte_zoom_window") // End point name without '.do'
new_window .render()
I Hope this helps.
Please mark this helpful if this helps and Accept the solution if this solves your issue.
Regards,
Kamlesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2022 04:59 AM
Perfect! It works thanks a lot!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2022 05:00 AM
You are welcome, I am glad I could help.