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 v

DOM replace Child

2011-11-18 Thread gangurg gangurg
This seems to work in Firefox but not in IE . Any ideas ? Element el = //Some Widgets element. el.getParentElement().replaceChild(newWidget.getElement(), el); //newWidget is not attached to DOM . its a dynamically created widget -- You received this message because you are subscribed to the Goo

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 unexp

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 exclud

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 other

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 st

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: 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 Butto

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 exception

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 com

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 incompatibi

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 me

Re: Multipage gwt app

2011-11-18 Thread Deepak Singh
Thanks for input. I need to know how to make a rpc call from module2 to module1. I have server class running in module1 and i have to invoke the methods in module1 from client of module2. how to acheive this? Also, i need to check that same session flows from host page of module1 to host page of

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 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 > > > > 2011/11/18 Alexander L

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: 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

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 t

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 > It only becomes: > > > Caused by: java.lang.ClassCastException:

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 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 (hibernate-jpa-2.0-api

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 work.

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 wrote: > Well some news: > > - Showcase work on IE7. > > - If I removing the DockLayoutPanel (setting explicit dimensions on the > DataGrid instead): > > DON'T WORK >     >         >             >                 >             >         >

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 WORKS: So, it seems datagrid inside dockpanel doesn't work well on

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

2011-11-18 Thread Juan Pablo Gardella
Thanks again Thomas! I'll try your suggestions. Juan 2011/11/18 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

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 wrote: > Am 17.11.2011 11:17, schrieb HARISH SAHARAN: >>

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: 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 wi

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 GWT