SmartGWT version: v9.0_2013-07-03/LGPL Development Only (built 2013-07-03)
Browser: I.E.11
OS: Win8.1
Relevant code for a Window class:
Issue:
In Internet Explorer, the window cannot be resized horizontally. Hovering over the left or right sides or any corners of the window does not provide the ability to drag and resize.
Resizing vertically works as expected.
Also, this issue does not exist on my Linux machine: Chrome/Firefox.
What could the issue be?
Browser: I.E.11
OS: Win8.1
Relevant code for a Window class:
Code:
setHeight("80%");
setWidth("80%");
setKeepInParentRect(true);
setModalMaskOpacity(DEFAULT_MODAL_OPACITY);
setIsModal(true);
setShowMinimizeButton(false);
setShowModalMask(true);
setShowCloseButton(false);
setCanDragResize(true);
setDragAppearance(DragAppearance.TARGET);
setCanDragReposition(true);
setShowMaximizeButton(true);
setAutoCenter(true);In Internet Explorer, the window cannot be resized horizontally. Hovering over the left or right sides or any corners of the window does not provide the ability to drag and resize.
Resizing vertically works as expected.
Also, this issue does not exist on my Linux machine: Chrome/Firefox.
What could the issue be?