- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-11-2016 06:42 AM
How to redirect to the parent window from the dialog window.. Any idea on this ?
Thanks in advance
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-11-2016 11:06 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-12-2016 01:18 AM
Actually I am using following code to display popup -
var gdw = new GlideModal('display_Courses_list');
gdw.setTitle('Courses');
gdw.setSize(500);
gdw.setPreference('table', 'x_37731_litmos_int_courses_list');
gdw.setPreference('sysparm_view', 'default');
//Set the table to display
var num = g_form.getValue('number');
var query = 'Name!=' + num;
gdw.setPreference('sysparm_query', query);
//Open the dialog window
gdw.render();
And in the popup there we are calling another UI action -
In that I am using the redirect code

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-12-2016 01:21 AM
Have You Made any UI PAge
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-12-2016 01:43 AM
No
Instad of UI page I have used GlidedialogWindow... to display table view in Popup

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-12-2016 02:28 AM
can you show that second ui action script.....and what is code
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-12-2016 02:32 AM
Second UI action code is just calling a GlideAjax and updating Incident Notes Column ,( incident.worknotes.). And then we are destroying the Glidedialog window and trying to return to incident form screen. If we are destroying dialogwindow, we can stay ack in the incident form screen itself, but users can not see the updated notes section. So that I just want to show users the updated Notes either in form refresh / reload or some other method.