You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 8, 2017. It is now read-only.
Does the issue occur in "quirks mode", "standards mode" or both? If you
don't know, does your HTML page contains a DOCTYPE declaration?
What version of GWT are you using? 2.2.0
What version of the gwt-log jar file or library file are you using?
3.1.0
What operating system(s) are you using?
Windows 7
Does the issue occur in web mode, development mode (formerly "hosted
mode"), both or don't know?
Both
What browser(s) do you use?
IE 9
What is the browser version (if you know) from Help->About?
What steps will reproduce the problem? Please attach sample code if you
can.
VerticalPanel sitePanel = new VerticalPanel();
RootPanel rootPanel = RootPanel.get();
final DecoratedTabPanel p = new DecoratedTabPanel();
p.add(mp, "Bizmarx");
if(Log.getLogger(DivLogger.class).isSupported()) {
Widget divLogger = Log.getLogger(DivLogger.class).getWidget();
p.add(divLogger, "Log");
p.selectTab(0);
}
sitePanel.add(p);
rootPanel.add(sitePanel);
What is the expected output? What do you see instead?
See attached screenshot.
Do you have a workaround?
Yes: don't use the div logger.
Original issue reported on code.google.com by [email protected] on 27 Apr 2011 at 5:48
I have the same issue! When I swiched off the DivLogger and enabled the
ConsoleLogger in *.gwt.xml file
<set-property name="log_DivLogger" value="DISABLED" />
<set-property name="log_ConsoleLogger" value="ENABLED" />
the error disappeared, but after that the page doesn't loaded in IE9! Other
browsers(f.e. Chrome, FF4) still good! What woud be the problem in IE9
Thanks!
Additional info: When I turned on the "compatibility view" the page loaded
correctly!! It is a compatibility feature by IE8??
Original issue reported on code.google.com by
[email protected]
on 27 Apr 2011 at 5:48Attachments:
The text was updated successfully, but these errors were encountered: