
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2015 02:51 AM
I'm trying to implement a loading pop up using both the GlideDialogWindow & the ShowLoadingDialog as below...
showLoadingDialog();
var loadingDialog = new GlideDialogWindow("dialog_loading", true);
loadingDialog.setTitle('Loading CIs please wait');
loadingDialog.render();
// Then later in the client script ...
addLateLoadEvent(function(){
hideLoadingDialog();
loadingDialog.destroy();
});
The GlideDialogWindow() works in firefox but neither work in IE or Chrome (this was the reason for adding the showLoadingDialog())
Has anyone else experienced this and found a work around?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2015 11:17 AM
Browser engines loads the pages in different orders and execute onload client script differently. It is better to use a flag to hide difference and check for that flag. Here is a sample:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2015 02:53 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2015 03:11 AM
Thanks Pradeep, but this relates to ui pages and I'm just using a client script to generate this on a change_request form.
Interestingly though when I try the GlideWindow_example for the GlideDialogWindow (as image below) it works fine in all browsers.
I'm a little confused as to why it works here and not in my script !?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2015 11:17 AM
Browser engines loads the pages in different orders and execute onload client script differently. It is better to use a flag to hide difference and check for that flag. Here is a sample:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2015 09:45 AM
Hello Hakan,
What is "getCIsDone"? an event? what would be the equivalent for change request form loads?