Re: Server communication that is compatible with Android

2011-11-18 Thread Thomas Broyer
Absolutely! RF is not tied to AppEngine at all (we do use it since its early beginnings, two years ago, as part of GWT 2.1-M1, on local Jetty servers). The server-side of RF is just a servlet. And there's a pure JVM version that can run on Android (use RequestFactorySource instead of

Re: DataGrid, Activity/Place don't work on IE7

2011-11-18 Thread Thomas Broyer
Does the Showcase work in IE7? http://gwt.google.com/samples/Showcase/Showcase.html#!CwDataGrid If it does, then it's not an issue with DataGrid in IE7, but how you're using it in your app. (also, note that using RootLayoutPanel is not enough if you don't have RequiresResize/ProvidesResize

Re: Different GWT compilation from Eclipse and command line

2011-11-18 Thread jogo
Hi Gal, thank you for sharing the gwt ant build script. The script wasn't the problem, I was able to compile the source with the default ant build script. The problem was that compiled code from Eclipse worked but from command line didn't. Today I made some other tests and I finally I identified

Re: code splitting in gwt

2011-11-18 Thread Ed
Some use cases: 1. Load faster by bringing chunks of code down as needed. 2. Load only what the user needs at the app level. I use this to handle multiple backends for a single frontend. e On Thu, Nov 17, 2011 at 10:11 AM, Thomas Klöber kloe...@ics.de wrote: Am 17.11.2011 11:17, schrieb

Re: DataGrid, Activity/Place don't work on IE7

2011-11-18 Thread Juan Pablo Gardella
Well some news: - Showcase work on IE7. - If I removing the DockLayoutPanel (setting explicit dimensions on the DataGrid instead): DON'T WORK g:VerticalPanel addStyleNames='mainPanel' g:DockLayoutPanel unit=PX height=450px width=700px g:center c:DataGrid

Re: DataGrid, Activity/Place don't work on IE7

2011-11-18 Thread Raphael André Bauer
On Fri, Nov 18, 2011 at 12:55 PM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Well some news: - Showcase work on IE7. - If I removing the DockLayoutPanel (setting explicit dimensions on the DataGrid instead): DON'T WORK     g:VerticalPanel addStyleNames='mainPanel'        

Re: DataGrid, Activity/Place don't work on IE7

2011-11-18 Thread Juan Pablo Gardella
Nop :( don't work. I can't understand why inside DockLayoutPanel the grid doesn't display. If I put another widget (for ex. a Label) it shows. In showcase use DockLayoutPanel, but use different layout. It's have rigth panel and left panel. I use only one main panel. I want discover why don't

Re: Hibernate ClassCastException in GWT hosted mode only

2011-11-18 Thread Alexander Lochschmied
It only becomes: Caused by: java.lang.ClassCastException: org.hibernate.dialect.MySQL5Dialect cannot be cast to org.hibernate.dialect.Dialect We haven playing with those JARs as there may be incompatibilities (JPA 1 vs 2) I think. Currently we do *not *reference them

Re: Hibernate ClassCastException in GWT hosted mode only

2011-11-18 Thread Alexander Lochschmied
Sorry for the typo; wanted to say: We have been playing ... -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/MDrIMjRfHUwJ. To post to this group,

Re: Hibernate ClassCastException in GWT hosted mode only

2011-11-18 Thread Juan Pablo Gardella
I have a sample that use hibernate 3.6.x and run inside jetty here: https://bitbucket.org/gardellajuanpablo/gwt-sample/wiki/Home Check the pom.xml. If you can't resolve the issue tell me. Juan 2011/11/18 Alexander Lochschmied alexander.lochschm...@gmail.com It only becomes: Caused by:

GWT Module cleanup

2011-11-18 Thread Jonathan Gossage
GWT has the entry point EntryPoint to initialize a module but I cannot find an analogous entry point for a module being unloaded. I want to release some resources when a module is unloaded and I can`t find the place to do it. Any ideas? -- You received this message because you are subscribed to

Re: GWT Developer Plugin for Firefox 8

2011-11-18 Thread Levi Van Zele
Thanks a lot! Works on Ubuntu amd64 as well. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/DoL-mvcndQAJ. To post to this group, send email to

Best practives to work with complex tokens with Activities and Places (MVP)

2011-11-18 Thread Andrew Uglev
Hi! I read a lot about MVP, tokens, places but still newbie and need an advise about complex token strategy. For example I have a Book object (that has its activity, place, view). The book can be shown, edited and commented by its ID. The token need to be switched to smth like #bookPlace:234/show

Re: Hibernate ClassCastException in GWT hosted mode only

2011-11-18 Thread kebatshotse setimela
i cannot solve it On 11/18/11, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: I have a sample that use hibernate 3.6.x and run inside jetty here: https://bitbucket.org/gardellajuanpablo/gwt-sample/wiki/Home Check the pom.xml. If you can't resolve the issue tell me. Juan

Re: GWT Module cleanup

2011-11-18 Thread Thomas Broyer
A module is never unloaded; except when the page itself is unloaded. So Window.addCloseHandler might be what you're looking for; but there's no need to release resources then, the whole browser context is unloaded (the page, its scripts, stylesheets, images, etc.) -- You received this message

Re: Hibernate ClassCastException in GWT hosted mode only

2011-11-18 Thread Thomas Broyer
On Friday, November 18, 2011 2:21:33 PM UTC+1, Alexander Lochschmied wrote: It only becomes: Caused by: java.lang.ClassCastException: org.hibernate.dialect.MySQL5Dialect cannot be cast to org.hibernate.dialect.Dialect We haven playing with those JARs as there may be incompatibilities

How do I programmatically get info about a CellTable's headers?

2011-11-18 Thread laredotornado
Hi, I'm using GWT 2.4. I have a com.google.gwt.user.cellview.client.CellTable widget, but I'm having trouble figuring out a programmatic way to get the String headers after the widget is constructed. I add column data like so ... tableWidget.addColumn(column, header); where column is a

GWT compile error- AsyncFragmentLoader.onLoad

2011-11-18 Thread Nupur
Hi, I posted this some where else, but not sure if it was in the right place. Sorry if this qualifies as cross-posting, but I really need to solve this problem. I have created a GWT project in Eclipse. It compiles fine from Eclipse, but on GWT compile, I get [ERROR] An internal compiler

Re: DialogBoxes and MenuBars . . . zIndexing a bad thing?

2011-11-18 Thread King_V
For anyone who has actually followed this - my solution (the hide() followed by show()) is not actually a particularly viable solution. It works, more or less, as long as there are no items inside the Window (the class that extends DialogBox), such as Buttons, TextBoxes, etc. In Firefox 5, a

Multiple DialogBoxes, bringing one to the front of others - a conundrum.

2011-11-18 Thread King_V
All, Ok, so I'm still, after a bit of hiatus, trying to create a Window- type of class that extends DialogBox. I'm going to call it MyWindow for now. I'm MOST of the way there. I've been able to create a Caption class that will have minimize, maximize, and close buttons. I've been able to get

Re: I can't get RichTextAre OnPaste Event hooking|sinking to work?

2011-11-18 Thread darkflame
Funny, thought I replied to this :-/ Anyway, fantasic work. I did a quick implementation in my app and found the following: Chrome - works flawlessly. At least data cut and paste from open office is stripped clean nicely. Firefox - as expected, workaround needed. Opera - unfortuntely data isnt

Drag-and-drop plugin of GwtQuery is now compatible with GWT 2.4

2011-11-18 Thread Julien Dramaix
Hello, I've just released a new version of the drag-and-drop plugin of GwtQuery. This plugin allows you to add easily drag-and-drop support to any DOM element or Widget including the data presentation widgets. This release brings a new widget : DragAndDropDataGrid. Check the example (and the

Re: Problem with compiled app but not with dev mode

2011-11-18 Thread Oliver Uvman
Thanks for the replies! Setting up logging was easy, and after that it took me a while to figure out that after upgrading to a new GWT version, the gwt-query lib I used was no longer compatible. After upgrading this one as well, my application works again. I'll also take your good advice and

Problem in viewing ui.xml in designer mode.

2011-11-18 Thread Neorj
Hi, I am new to GWT and uiBinder concept. While trying out examples on eclipse Galileo. I stumbled upon the following error below. I started my eclipse using jdk1.6.0. I am using Mac OS X Ver 10.5.8. Any assistance would be of great help. Regards RJ Internal Error GWT Designer encountered

Re: TabLayoutPanel Dynamic Resizing

2011-11-18 Thread Ashwani Gupta
Finally got a chance to work on this. I tried inspecting the Element using IE 9 (using F12 Developer Tools). Almost all my elements have position = absolute. I tried setting the TabLayoutPanelContent height to 100% but nothing happend. Its not that nothing is visible I have been seeing textarea

[gwt-contrib] Re: Changes to support experimental development mode work: (issue1594803)

2011-11-18 Thread skybrian
http://gwt-code-reviews.appspot.com/1594803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] GWT / Spring Roo Integration

2011-11-18 Thread Nick Thorson
Not sure if this is the group to join, but it seemed like at the very least it was a good place to start. I have been building GWT / Spring Roo apps for about a year now, and have several thoughts I would like to share with the development team of the GWT plugin for Spring Roo. For the most part

[gwt-contrib] Re: Changes to support experimental development mode work: (issue1594803)

2011-11-18 Thread cromwellian
LGTM http://gwt-code-reviews.appspot.com/1594803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors