IE 9 crashes in dev mode (GWT 2.4)

2012-03-13 Thread Alex Ph
Hi, We tried to update our projects from GWT 2.0.X to 2.4 to get the IE9 compile target. Compiling and deploying working fine. But when I try to start the dev mode with 2.4 and IE 9, the Internet Explorer crashes. First I thought thats an issue with our old 2.0.X project. Therefore I installed

Re: File download and Exception handling using a servlet.

2012-03-13 Thread Albert van Veen
Hi Bowie, Im actually interested in how to read the error code or exception when setting an url in a frame object. When the servlet call goes correct correct, the browser shows a file download window. If the servlet call fails, the frontend needs to be aware of this somehow. Do I need somehow

GWT+ hibernate

2012-03-13 Thread Akram Moncer
hello all can someone tell me how can create a webapp with GWT 2.4 and hibernate and how can i deploy it to google app engine thinks; -- Akram MONCER Personne -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: remove border from Sub Menu

2012-03-13 Thread Viktor
i don't know if it's possible but here is a list of all css forrmating values for a menu. Maybe you find anything helpful there.. http://gwt.google.com/samples/Showcase/Showcase.html#!CwMenuBar greetings Am Montag, 12. März 2012 16:14:42 UTC+1 schrieb beig: Hello, i tried to remove the

Re: GWT Spring

2012-03-13 Thread Alex Dobjanschi
The framework is very elementary, and lacks one of spring's most important feature: ioc container. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: RPC Serialization of an Interface..

2012-03-13 Thread Alex Dobjanschi
try to use classes first, but you can definitely use interfaces. there are a couple of considerations: 1 interfaces must extend Serializable 2 those interfaces must be found by gwt rpc generator, so place them in one of the source imports of gwt module 3 implementations of these interfaces must

Re: A GWT version of the JavaScript TodoMVC sample application

2012-03-13 Thread Thomas Broyer
On Monday, March 12, 2012 10:40:06 PM UTC+1, Colin Eberhardt wrote: - Instead of wrapping everything in a UiBinder, I would have kept part of the template in the HTML host page (I'd have wrapped only the div id=todoapp, keeping the static instructions and credits sections in

Custom header using CompositeCell or AbstractCell

2012-03-13 Thread kretel
Hi, I am trying to build a custom header which have two labels in a header and both are styled differently. For example: | header1 - label1 | header2 - label1 | +---++ | header1 - label2 | header2 - label2 | Label1 in headers needs to be styled

Re: A GWT version of the JavaScript TodoMVC sample application

2012-03-13 Thread Colin Eberhardt
On Mar 13, 9:52 am, Thomas Broyer t.bro...@gmail.com wrote: On Monday, March 12, 2012 10:40:06 PM UTC+1, Colin Eberhardt wrote:    - Instead of wrapping everything in a UiBinder, I would have kept part    of the template in the HTML host page (I'd have wrapped only the div    

RichTextArea height size

2012-03-13 Thread Saik0
Hi @all, why could i change the width of the RichTextArea with css but not the height? What i'm missing :-\ ? Source: RichTextArea area = new RichTextArea(); area.setSize(100%, 100%); -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Custom header using CompositeCell or AbstractCell

2012-03-13 Thread kretel
What I might actually need is to get two rows inserted into theader in CellTable. So the header look like this: | | header1 - label1 | header2 - label1 | +--+--+--+ | label| header1 - label2 | header2 - label2 |

Re: GWT+ hibernate

2012-03-13 Thread Sebastian Gurin
About GWT and hibernate, you have a lot of post explaining what needs to be done for getting GWT and hibernate work toghether. About GWT+hibernate+appengine, I don't think it is possible to use hibernate on appengine based projects. Regards On Tue, 13 Mar 2012 09:36:57 +0100 Akram Moncer

Re: GWT+ hibernate

2012-03-13 Thread Akram Moncer
ok thinks Le 13 mars 2012 15:56, Sebastian Gurin sgu...@softpoint.org a écrit : About GWT and hibernate, you have a lot of post explaining what needs to be done for getting GWT and hibernate work toghether. About GWT+hibernate+appengine, I don't think it is possible to use hibernate on

Re: Custom header using CompositeCell or AbstractCell

2012-03-13 Thread Ümit Seren
You can check out this stackoverflow thread for some pointers: http://stackoverflow.com/questions/6422896/celltable-with-custom-header-containing-searchbox-and-focus-problem On Tuesday, March 13, 2012 1:38:05 PM UTC+1, kretel wrote: What I might actually need is to get two rows inserted into

Re: Custom header using CompositeCell or AbstractCell

2012-03-13 Thread kretel
Thanks for the pointer. I saw it and follow similar pattern, but it does not give you flexible approach to styling differently both rows in the header. you also wrote: [...] Well I ended up solving this by adding separate SearchBoxes *above* the CellTable-Header and using CSS to align them

Re: Custom header using CompositeCell or AbstractCell

2012-03-13 Thread Ümit Seren
I believe that from GWT 2.4 on there a Builder class for making more advances and sophisticated Headers/Footers. But I haven't tried it myself. But I am not sure why it won't give you flexible approach for styling? You can add a class to the row/cell in the render method of your Header class. I

Re: GWT Spring

2012-03-13 Thread Joseph Lust
We've been using Spring4GWT to great effect in our enterprise application for the last year. While it may not include every aspect of Spring, it makes RPC's trivially easy. To review: - Make a Spring Bean as you normally would for a backend service, implementing your service interface

Re: GWT+ hibernate

2012-03-13 Thread Joseph Lust
Try GWT+JDO+AppEngine. Hibernate does not work work well with the non-relational data stores of GAE. There is much documentation available on how to do this. Sincerely, Joe -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: GWT PORTLET

2012-03-13 Thread Joseph Lust
You could also use Ext GWT. It has out of the box working examples of portlets in GWT. I found it quite simple to implement. http://www.sencha.com/examples/pages/portal/portal.html Sincerely, Joe -- You received this message because you are subscribed to the Google Groups Google Web

Re: GWT UIBinder remember username password

2012-03-13 Thread Joseph Lust
Markandayarushi Pamu, This is a common issue on dynamically generated webapp content. Basically, the browser looks for a form with name 'password', as a password input, and any other fields like 'email' or 'username.' If they are found, the browser offers to remember them when they are posted.

Re: URL fetch request size in googleaapengine

2012-03-13 Thread Joseph Lust
Learning, Seems that you're hitting a max file size of 4MB. (4e6 bytes / (4*1024*1024))*4 = 3.81, which is what you're getting, since somewhere along the line a MB is using 1e6 bytes, not 1048576 bytes. Are you accessing an ASP application? The default file export limit is 4MB there. Perhaps

Re: Chrome not properly rendering HeaderPanel as of yesterday's update?

2012-03-13 Thread Eric Andresen
I've isolated this issue down to the Chrome Dev-channel and Canary-channel. The Stable and Beta channels work fine. The issue is reproduceable in both 64-bit Win7 and 32-bit XP. I guess I'll take the issue over to the Chrome forums since it looks like their problem. When I see this

Re: JSNI and Flex Intercommunication Problem (through Javascript Interface)

2012-03-13 Thread Deepan
Hi, I am also trying to use Cytoscape web in GWT. I was wondering if you successfully created the wrapper. Any help on this topic will be greatly appreciated. thanks. Nik On Sunday, June 5, 2011 1:04:43 AM UTC-4, Debug Desperado wrote: Oops, forgot to report back just in case anyone else

Re: Custom header using CompositeCell or AbstractCell

2012-03-13 Thread Andrea Boscolo
GWT 2.5 will give this opportunity I guess. Relevant issue is http://code.google.com/p/google-web-toolkit/issues/detail?id=5423#c13 Relevant commits are: http://gwt-code-reviews.appspot.com/1501803 http://gwt-code-reviews.appspot.com/1499808/ Relevant demos are:

2 different GWT apps in the same hostpage using different versions of GWT?

2012-03-13 Thread Ortwin Joniaux
Dear, We would like to put two different GWT applications in the same host page. Since the applications have different life-cycles, it's probable that one application get upgraded to a next version of GWT before the other one. Will this give any issues? JavaScript variable name clashes? We

how to link with page in gwt without update history stack?

2012-03-13 Thread mars
hi, my gwt page has link within itself, like normal html page a href=#bB/a point to a name=b/a h3B/h3 within the same page, but i don't want to update the history stack by appending '#b' to the end of url. how can i do that? I used anchor instead of hyperlink. thanks. -- You

Re: how to test GWT app through a proxy

2012-03-13 Thread John Malpas
The problem is getting worse, Now several users have sent me similar errors, all on the new version of an app that has been running (I thought reliably) for 1 1/2 years. The error is like Class$yE: Unable to initiate the asynchronous service invocation (MyDataService_Proxy.readRecords) -- check

Re: how to test GWT app through a proxy

2012-03-13 Thread Jens
MyDataService_Proxy is generated by GWT and you can see the generated files by adding -gen folder to your app's Eclipse run configuration. The exception you see is thrown in RemoteServiceProxy.doInvoke(...) and simply wraps a possible RequestException. These RequestExceptions can be thrown by

Re: Creating different frontends in one application

2012-03-13 Thread Joseph Lust
While I am a fan of the decoupling pointed out by Thomas Broyer with RequestFactory, you can still do the same thing with RPC rather easily, and skip the need for RequestFactory. In the projects at my office, we use Maven and the following project structure: - MainProject.pom -

Re: Using CssResource @def inside some css property with parenthesis not working

2012-03-13 Thread Joseph Lust
Shaun, I had issues with these @def's last fall. Here is what I learned: 1) Make sure the @def's are placed at the very top of the CSS file, anywhere else and they'll be trouble (this face is not documentedhttps://code.google.com/p/google-web-toolkit/issues/detail?id=6536 ). 2) Use the

GWT add JARS

2012-03-13 Thread Vincenz Mössenböck
Hello, I'm a student at the HTL Wels and I'm trying to learn myself some GWT. I brought everything running, but there is still st what really annoyes me. I always have to copy all the jars like hibernate jars and postgresql jars to the Webinf .lib folder. Is there a way where I can add these

Re: Interacting with servlet containers

2012-03-13 Thread Joseph Lust
Howard, You can write your front in GWT via Java, and then interact with any backend you fancy. There are plenty of these tutorials out there to interact with other languages like PHP backendshttps://code.google.com/webtoolkit/doc/latest/tutorial/JSONphp.htmlusing a JSON calls. See the docs

Re: about css style in gwt

2012-03-13 Thread Joseph Lust
tong, The parent element must have the first class in the CSS selector and the element (child of parent) must have the second CSS selector class. i.e. div class=gwt-MenuBar div class=gwt-MenuBarItem/div /div Note also that you don't want to use the '.' character that was in the selector in