Hi,
When we switched our application to SmartGWT-4.0p (build date 25th August 2013), we found that application is not giving consistent look and feel in IE9 and Mozilla browser. There seems to be issues with skinning. I tried to replicate this with a sample application rendering TabSet and SelectItem. And issue was found valid. You can see the look and feel of SelectItem in attached images
It would be great If the skinning can be made consistent for IE8, IE9 and Mozilla.
content of *.gwt.xml file of the sample code is :
Look and feel was consistent with SmartGWT v9.0p_2013-07-29/PowerEdition Deployment (built 2013-07-29).
But as some defect fixing has been done in nightly build we switched to SmartGWT-4.0p (build date 25th August 2013).
Would be great if skinning related issues can be fixed.
Thanks,
Madan
When we switched our application to SmartGWT-4.0p (build date 25th August 2013), we found that application is not giving consistent look and feel in IE9 and Mozilla browser. There seems to be issues with skinning. I tried to replicate this with a sample application rendering TabSet and SelectItem. And issue was found valid. You can see the look and feel of SelectItem in attached images
It would be great If the skinning can be made consistent for IE8, IE9 and Mozilla.
Code:
public void onModuleLoad() {
VLayout layout = new VLayout(15);
TabSet tabs = new TabSet();
tabs.addTab(new Tab("Search By Location"));
tabs.addTab(new Tab("Search By Company"));
tabs.addTab(new Tab("Search By Field"));
tabs.setHeight(50);
tabs.setWidth(400);
HLayout hlayout = new HLayout();
ToolStrip tools = new ToolStrip();
SelectItem items = new SelectItem();
items.setTitle("");
items.setValueMap(new String[]{"Select Item","Item1","Item2","Item3"});
items.setDefaultToFirstOption(true);
tools.addFormItem(items);
hlayout.addMember(tools);
hlayout.setWidth(300);
hlayout.setHeight(30);
layout.addMember(hlayout);
layout.addMember(tabs);
layout.setHeight100();
layout.setWidth100();
layout.draw();
}Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 1.7.0//EN"
"http://google-web-toolkit.googlecode.com/svn/tags/1.7.0/distro-source/core/src/gwt-module.dtd">
<module rename-to='chartdemo'>
<inherits name='com.google.gwt.user.User'/>
<inherits name="com.smartgwtee.SmartGwtEE"/>
<inherits name="com.smartgwt.Drawing"/>
<inherits name="com.smartgwt.Charts"/>
<inherits name="com.smartgwt.Analytics"/>
<inherits name="com.smartgwt.tools.SmartGwtTools"/>
<inherits name='com.google.gwt.user.theme.clean.Clean'/>
<inherits name="com.google.gwt.logging.Logging"/>
<!-- Other module inherits -->
<set-property name="gwt.logging.logLevel" value="ALL"/>
<set-property name="gwt.logging.enabled" value="TRUE"/>
<set-property name="gwt.logging.consoleHandler" value="DISABLED"/>
<set-property name='gwt.logging.popupHandler' value='DISABLED'/>
<set-property name="gwt.logging.simpleRemoteHandler" value="DISABLED" />
<!-- Specify the app entry point class. -->
<entry-point class='com.demo.client.ChartDemo'/>
<!-- Specify the paths for translatable code -->
<source path='client'/>
<source path='shared'/>
</module>Look and feel was consistent with SmartGWT v9.0p_2013-07-29/PowerEdition Deployment (built 2013-07-29).
But as some defect fixing has been done in nightly build we switched to SmartGWT-4.0p (build date 25th August 2013).
Would be great if skinning related issues can be fixed.
Thanks,
Madan