UI-page The page you are looking for could not be found.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-12-2024 12:58 AM
UI-page The page you are looking for could not be found.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-12-2024 10:25 PM
Hello @TEJESHBHEEMAVAR,
Please refer to the below link:
https://www.servicenow.com/community/now-platform-forum/the-page-you-are-looking-for-could-not-be-fo...
Mark my correct and helpful, if it is helpful and please hit the thumbs-up button to mark it as the correct solution.
Thanks & Regards,
Abbas Shaik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-12-2024 11:17 PM
Hi @TEJESHBHEEMAVAR ,
In your script are you using "producer.redirect", if you using that please remove and try it once.
You can also refer below script
<g:ui_form>
<input type="text" name="Test" /><br/>
<label for="Short" >Short Descript</label>
<textarea id="shDe" name="Short Description" /><br/>
</g:ui_form>
Try to run without <g:dialog_button_ok_cancle /> this may be this helps you!
Please mark my answer correct and helpful if it works you
Thanks and Regards
Sarthak
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-14-2024 12:42 AM
Can you please provide more details about what is not working after removing the <g:dialog_button_ok_cancle />? This will help me understand the issue better and provide you with an appropriate solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-15-2024 02:40 AM
Hi @TEJESHBHEEMAVAR ,
I tried your problem on my PDI and it works for me
Please check the reference images below:
Here's UI Page and UI Action for reference
Code :
<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
<g:ui_form>
<input type="text" name="Test" /><br/>
<label for="Short" >Short Descript</label>
<textarea id="shDe" name="Short Description" /><br/>
<g:dialog_button_ok_cancle />
</g:ui_form>
</j:jelly>
UI Action
Code :
function uiPageCall(){
var gdw = new GlideDialogWindow('openPage');
gdw.setTitle('Open UI Page');
gdw.setSize(1400,1300);
gdw.render();
}
Please mark my answer correct and helpful if this works for you
Thanks and Regards
Sarthak