GlideDialogForm vs GlideDialogWindow window sizing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-04-2012 12:23 PM
I am using GlideDialogForm to pull up another table within the incident form and I need to change the size of the window.
In GlideDialogWindow I can set the size with this code: dialog.setSize(width, height);
However GlideDialogForm seems to completely ignore this setting.
Any ideas?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-04-2012 01:47 PM
I think I have seen someone use setDialogSize(w, h) to do that. I am not an expert in that area, but it is worth a shot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-04-2012 01:47 PM
I think I have seen someone use setDialogSize(w, h) to do that. I am not an expert in that area, but it is worth a shot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-17-2013 08:37 AM
setSize(w, h) seems to be working well for me.
Does anyone know how to increase the size of the input field within the Dialog box or transform it into a textarea?
Thanks,
Cosmin
U of MN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-26-2015 10:34 AM
Hey Nick!
In GlideDialogForm, use the setDialogSize(w,h) method to set the width and the height. GlideDialogWindow's setSize method will work on the modal container's width, but the width of the form will not be set properly.