- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-20-2017 02:26 AM
Hi All,
I am building a service portal where i have a widget with a button. On Click of this button a small dialog window or ui page with few html inputs should pop up and the inputs from this page should be saved in the backend.
Can any one give me insights on calling a ui page or dialog window from widget.
Thanks,
Divya Lakshmi.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-20-2017 05:44 AM
Here's a resource that might help you out.
Using $uibModal: Modal Windows in Service Portal - ServicePortal.io - Service Portal, CMS, and Custom Apps

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-20-2017 05:44 AM
Here's a resource that might help you out.
Using $uibModal: Modal Windows in Service Portal - ServicePortal.io - Service Portal, CMS, and Custom Apps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-22-2017 05:51 AM
Thanks Justin, It worked for me
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-10-2019 06:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-20-2017 06:22 AM
Hi Divya,,
Below piece of code that might help you:
Ui page:
<button class="listactions" type="submit" onClick="return termsOK();" name="sub_btn" > Submit </button>
on client script:
function termsOK(){
alert("Test");
return true;
}
Also you can refer this link:http://www.servicenowguru.com/system-ui/glidedialogwindow-advanced-popups-ui-pages/
Please provide your feedback appropriately (Like, Helpful, Endorse AND/OR Correct) to help community.
Thank you!