var dialogClass = window.GlideModal ? GlideModal : GlideDialogWindow; var dd = new dialogClass("hierarchical_progress_viewer", true, "40em", "10em");
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-25-2017 04:22 AM
There is a UI Action named RUn Test which is available for ATF can anybody suggest what this piece of code is doing:
var dialogClass = window.GlideModal ? GlideModal : GlideDialogWindow;
var dd = new dialogClass("hierarchical_progress_viewer", true, "40em", "10em");
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-25-2017 04:29 AM
This code is opening a GlideDialog with UI Page: hierarchical_progress_viewer and of size: 40 by 10 em.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-25-2017 04:44 AM
but I cannot find a UI Page with "hierarchical_progress_viewer" name
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-25-2017 04:59 AM
IT is just to open a dialog window to show the progress of the action taking place.
For eg: While committing Update sets we see the progress line, in the same way. This is used in many places.
UI Action Commit Update Set
Thanks,
Vinitha.K