Re: Anyone using gwt-rpc over websockets?

2012-05-06 Thread Yaya @ Work
Hi ! Don't forget that websockets will only be used if both the server and the client support them. Also, your goals are a bit unclear : you mention RPC, which is client initiated communication, and websockets, whose initial aim was to push data from the server to the client. However, indeed,

Inserting a DIV in a GWT Panel

2012-05-06 Thread Xybrek
I have this DIV on my application jsp page which I need to inject in to a GWT VerticalPanel. Coded on top of the iframe tag which contains __gwt_historyFrame : **index.jsp** div class=footer id=footer style=display:none pCopyright Š 2012 MyCompany. All Rights Reserved./p

Re: Inserting a DIV in a GWT Panel

2012-05-06 Thread yves
I'm not sure, but try to remove the style display:none or change it (something like footer.setProperty(display, xxx)) when you append the element. Yves -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Inserting a DIV in a GWT Panel

2012-05-06 Thread Dennis Haupt
if you can wait until tomorrow, i can take a look at a method that cuts pasted a div into a gwt panel and works. Am 06.05.2012 17:05, schrieb yves: I'm not sure, but try to remove the style display:none or change it (something like footer.setProperty(display, xxx)) when you append the

Re: RF: error.getExceptionType() returns null in Receiver#onFailure

2012-05-06 Thread Joshua Kappon
Weird. have you tried throwing another type of exception? On Wednesday, May 2, 2012 6:07:40 PM UTC+3, Gilad Egozi wrote: *Hello* * * *In the server side i have:* public void throwException() throws Exception { throw new NullPointerException(fslkdjflks); } *in the client side i have:*

Re: RF: error.getExceptionType() returns null in Receiver#onFailure

2012-05-06 Thread Jens
Because the DefaultExceptionHandler in RequestFactoryServlet hides server details and only gives you the exception message. See: http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/web/bindery/requestfactory/server/DefaultExceptionHandler.java You have to sub

Re: RequestFactory with JsonRpc

2012-05-06 Thread Eduardo Guardiola
Hi, If it is working for you now. Please, post working code. Many thanks. On 26 mar, 20:27, Miroslav Genov mge...@gmail.com wrote: Hello, Was wondering where anyone is using RequestFactory with JsonRpc ? I'm trying to get it working, due performance issue with the standart serialization

I'm hitting App Engine's application static file limit of some 150MB

2012-05-06 Thread Brandon Donnelson
I'm hitting App Engine's application static file limit of some 150MB. Seems that when I try to deploy a second mirrored GWT module adds some overhead that throws me over the limit. This second module I have a slightly different configuration going on for local stuff, which I can remove to get

Re: Google axing GWT?

2012-05-06 Thread Handw
That is a really good news. On Saturday, May 5, 2012 10:37:01 PM UTC-4, Eric Clayberg (Google) wrote: We are hoping to release GWT 2.5 soon (before the end of the quarter). On Saturday, May 5, 2012 2:03:42 PM UTC-4, Travis Webb wrote: Eric, Thanks for replying. I have been looking for

Re: Is there any way to remove the sort arrow decorator in a header of a CellTable?

2012-05-06 Thread Zak Linder
I don't think this will work, the arrow icon is added by wrapping the header Cell in an IconCellDecoratorhttp://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/cell/client/IconCellDecorator.html(in AbstractCellTable.getSortDecorator(), which is called in

Re: Is there any way to remove the sort arrow decorator in a header of a CellTable?

2012-05-06 Thread Zak Linder
Sorry, you need to added !important because the styles you're overriding are defined inline: /* hack to remove sort icon */ . cellTableSortedHeaderAscending div, .cellTableSortedHeaderDescending div { padding-left: 0* !important*; } .cellTableSortedHeaderAscending div div:first-child,