Im using the following Version of SmartGWT:
v8.3_2012-11-20/LGPL Deployment 2012-11-20
on Firefox 18.0.2
I upgraded my project from smartgwt 2.1 to 3.1 almost without any modifications. But I noticed one unexpected visual difference. It seems that the window cannot be border-less any more. There is always 2-3 pixel border around the window. Even worse is the corners of upper border are curved.
My project uses default enterprise skin. Can developer confirm this as a defect, or have I done something wrong?
v8.3_2012-11-20/LGPL Deployment 2012-11-20
on Firefox 18.0.2
I upgraded my project from smartgwt 2.1 to 3.1 almost without any modifications. But I noticed one unexpected visual difference. It seems that the window cannot be border-less any more. There is always 2-3 pixel border around the window. Even worse is the corners of upper border are curved.
Code:
Window win = new Window(); win.setBackgroundImage(path_to_loading_indicator_img); win.setWidth(60); win.setHeight(60); win.setAutoCenter(true); win.setShowHeader(false); win.setShowTitle(false); win.setShowEdges(false); win.setShowBody(false); win.setIsModal(true); win.setShowModalMask(true); win.show();
Comment