September 2017
Intermediate to advanced
408 pages
9h 25m
English
We can show a new dialog window using the GlideDialogWindow class by creating an object of the class and passing the name of the UI page to render:
vargdw = new GlideDialogWindow('demo_ui_page');
This will create a new dialog window with the content of the window generated from the UI page named demo_ui_page.
To set the title of the glide dialog window, we can use the following code:
gdw.setTitle("A new title");
The preceding code will change the tile of the glide window. In order to resize the glide window, we can use the setSize method of the class, as shown here:
gdw.setSize(width, height);
The preceding code will change the height and width properties of the glide window. The width and height parameters ...
Read now
Unlock full access