On Jun 16, 9:03 am, ingo <[email protected]> wrote:
> hello everyone,
>
> i am working on the honeycrm projecthttp://code.google.com/p/honeycrm/.
> when users open the app the first thing they see is a loading screen
> (similiar to gmail login). after the loading has finished the loading
> dialog is hidden and the real ui is inserted into the RootLayoutPanel,
> seehttp://code.google.com/p/honeycrm/source/browse/trunk/src/honeycrm/cl....
> this means a DecoratedTabPanel is inserted into the RootLayoutPanel.
> this works fine in firefox, safari and chrome but not at all in IE. in
> IE only a blue screen (the background color defined by the css) is
> shown - nothing more. you can try the app on appengine:
> honeyyycrm.appspot.com

Layout panels need the page to be in "standards mode" to work well
(particularly in IE), yours is in quirks mode.
Replace your doctype with a simple <!DOCTYPE html>, it's enough to
switch to standards mode (that's why it has been chosen for HTML5)

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to