problem with css when deployed to app engine

2012-02-10 Thread gwtTexter
I'm using the standard theme in GWT 2.4 and have an css-file placed
under the war folder.

Everything works fine in hosted mode in Chrome but once deployed to
app engine Chrome ignores my own stylesheet?
In Firefox there is no problem though..

It kind of bothers me that hosted mode and app engine reacts
differently in the same browser, can anyone tell me why?

I'm running osx 10.6.8, GWT 2.4 and Eclipse Indigo.



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



Gwt 2.4 DialogBox close-icon

2012-02-08 Thread gwtTexter
I want to add a HTML Widget containing a close-icon with a
Clickhandler to Dialogbox.setHTML but it only accepts strings.
According Issue 1405 (http://code.google.com/p/google-web-toolkit/
issues/detail?id=1405) something is fixed regarding this problem, I'm
a bit unsure what and in which version it's in.
Can anyone shed som light on this? I know there is solutions extending
Dialogbox but if I can skip that it would be great!

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



Re: Stack trace stripped out of remote exception

2009-09-19 Thread gwtTexter

Hi!

I had the same problem and the only solution I found was this:

private SerializableException createSerializableException(Exception e)
{
StringWriter sw = new StringWriter();
e.printStackTrace(new PrintWriter(sw));
String stacktrace = sw.toString();
SerializableException exception = new SerializableException
(stacktrace);
return exception;
}

regards

/h

On Sep 16, 6:44 pm, JoeB  wrote:
> Hi all,
>
> In my GWT application's service implementation, I throw a custom
> exception which is handled in the client's onFailure(Throwable caught)
> method.  The "caught" parameter is the custom exception that was
> thrown, except that it doesn't contain any stack trace.  I would like
> to have the stack trace in the client in order to display it (when the
> client is configured in a debugging mode).  Is there a GWT reason that
> stack traces are stripped out of an exception passed from server to
> client?
>
> -- Joe
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en
-~--~~~~--~~--~--~---



memory leak with rpc call and gwt 1.4.62

2009-06-23 Thread gwtTexter

Hi!

We're developing a rather large app using gwt-ext and of course like
everyone else we're having problems with memory leaks in IE7. I know
that it's probably alot to do with the ext code but it seems like
there is a leak when we're doing rpc call as well. If the client
returns to much data we get a out of memory exception in IE7 and even
with small amounts of data it seems like the client accumulates alot
of memory which is never released.
Has anyone had a similar problem? I tried to upgrade to gwt 1.5.3 but
that didn't help.

There is a small memory leak on firefox, safari and chrome as well but
ie is really bad..

regards

/h


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