Re: GWT+Roo a few days later

2010-11-05 Thread zixzigma
is there a way to tell Roo to just generate Places or just Presenters ? instead of everything ? the thing is with CRUD part of app, there is a mapping between Entities(entityproxies) and Places/Activity/Presenters. but there are times that many entities need to collaborate to present the informati

Re: GWT Loading the application very slowly

2010-11-05 Thread keyboard_samurai
No I cannot use it as I am using GWT 1.7.1 not the 2.x version.. This is what is making this task more challenging now .. On Nov 6, 10:58 am, zixzigma wrote: > Have you tried Code Splitting > ?http://code.google.com/webtoolkit/doc/latest/DevGuideCodeSplitting.html > > are you Lazy Loading you

Re: GWT Loading the application very slowly

2010-11-05 Thread zixzigma
Have you tried Code Splitting ? http://code.google.com/webtoolkit/doc/latest/DevGuideCodeSplitting.html are you Lazy Loading your widgets ? -- 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-to

Re: GWT Loading the application very slowly

2010-11-05 Thread keyboard_samurai
HI, Does anyone have any pointers for this ? Also not sure if speed tracer can be used in this case.. On Nov 5, 9:59 pm, keyboard_samurai wrote: > Hi All, > > I am facing a issue which seems to have cropped up in recent times in > our code. We are using GWT 1.7.1 along with GXT 2.2 widget libr

Re: FocusPanel with nested focusable elements

2010-11-05 Thread David Pinn
I'm eager to read an answer to this too. -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr..

Re: JUnit testing GWT

2010-11-05 Thread Arthur Kalmenson
Hi Ignat, I definitely agree with you and follow this model. Not everyone does and in some cases you're stuck unit testing your views. If you're able, definitely one should follow what you said. All the best, -- Arthur Kalmenson On Wed, Nov 3, 2010 at 8:51 AM, Ignat Alexeyenko wrote: > Arthur

Gwt 2.1 Activities + Code splitting + Gin

2010-11-05 Thread Nicolas Antoniazzi
Hello, I am trying to use CodeSplitting with Activites on 2.1. I read this very interresting thread http://code.google.com/p/google-web-toolkit/issues/detail?id=5129 and T.Broyer says that the best approach is to use an AsyncProxy for Activities. It makes sense but I have problem with it since my

Re: GWT 2.1.0 maven asks for com.google.gwt:gwt-dev:jar:windows:2.1.0??

2010-11-05 Thread Thomas Broyer
On 5 nov, 22:01, Yaakov Chaikin wrote: > Never mind... It was the version of the gwt-maven-plugin... However, > now, I can't get it to install. What version of the gwt-maven-plugin > am I supposed to use with the latest 2.1.0 release of GWT and which > repository does it reside in? You can use

Re: GWT Designer and Data Binding

2010-11-05 Thread Jeff Larsen
Take a look at the editor framework. http://code.google.com/webtoolkit/doc/latest/DevGuideUiEditors.html On Nov 5, 12:12 pm, csaffi wrote: > Hi everybody, > I happily discovered that Google has released GWT Designer free for > use, and I immediately downloaded it for testing. Unfortunately I > r

Re: Eclipse Hangs on Compile of GWT?

2010-11-05 Thread leslie
And I forgot to answer your question about the specific version I had been using: it was java version 1.5.0_26 (build 1.5.0_26- b03-376-9M3263) which I downloaded from the Software Update site from Apple. -- You received this message because you are subscribed to the Google Groups "Google Web To

Re: Handling ClickEvents with custom composite widgets

2010-11-05 Thread Jeff Larsen
here is a hacky example of how to do something similar to what you want with an event bus. This definitely could've been put together better, but it should give you the general jist. https://code.google.com/r/larsenje-fixesforwidgeteventhandling/source/checkout On Nov 5, 1:14 pm, nathan wrote:

Re: Eclipse Hangs on Compile of GWT?

2010-11-05 Thread leslie
Rajeev thanks so much for helping me to resolve this. After looking at that bug report I knew I had no choice but to roll back GWT or upgrade my Java to Java 6. So I did the latter. I went into Preferences in Eclipse, selected Java then Installed JRE's and added the information for the Java 6 ve

Re: GWT 2.0.4 Way to query browser window's document area size in onModuleLoad

2010-11-05 Thread Craig
Have you tried Window.getClientHeight()? On Nov 5, 3:21 am, magic wrote: > Hi, > > I am looking for a way to query the size of the browser's document > window when onModuleLoad is called. I have tried > > Element body = RootPanel.getBodyElement(); > int clientWidth = body.getClientWidth(); > int

Re: Eclipse Hangs on Compile of GWT?

2010-11-05 Thread leslie
Thanks for your continued help here Rajeev. I appreciate it. If I log on as admin and attempt to compile I generate the same dead lock. The issue is the same. I'm going to have look at this bug post. On Nov 5, 3:02 pm, Rajeev Dayal wrote: > I think you're hitting the following bug: > > http:/

Re: Eclipse Hangs on Compile of GWT?

2010-11-05 Thread Rajeev Dayal
I think you're hitting the following bug: http://bugs.sun.com/view_bug.do?bug_id=6440846 What version of the JDK/JRE are you using in your project? On Fri, Nov 5, 2010 at 4:38 PM, Rajeev Dayal wrote: > If you log on as an admin and try this out,

Re: GWT 2.1.0 maven asks for com.google.gwt:gwt-dev:jar:windows:2.1.0??

2010-11-05 Thread Yaakov Chaikin
Never mind... It was the version of the gwt-maven-plugin... However, now, I can't get it to install. What version of the gwt-maven-plugin am I supposed to use with the latest 2.1.0 release of GWT and which repository does it reside in? Right now, I have this (from the expenses example): o

Re: Handling ClickEvents with custom composite widgets

2010-11-05 Thread Chad
nathan, When building composite widgets, it is up to you, within the composite widget, to handle and/or expose whatever events you want. So, if you want to be able to expose click events for multiple buttons in a composite, you may be best off doing one of two things: 1) Create a public enum that

Re: Eclipse Hangs on Compile of GWT?

2010-11-05 Thread Rajeev Dayal
If you log on as an admin and try this out, do you see the same problem? On Fri, Nov 5, 2010 at 4:37 PM, leslie wrote: > >> 1 - The machine where I'm developing is not online. It has no > connection to the internet. > > Actually is does have an internet connection. I'm just normally > offline

Re: Eclipse Hangs on Compile of GWT?

2010-11-05 Thread leslie
>> 1 - The machine where I'm developing is not online. It has no connection to >> the internet. Actually is does have an internet connection. I'm just normally offline when I'm working. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. T

GWT 2.1.0 maven asks for com.google.gwt:gwt-dev:jar:windows:2.1.0??

2010-11-05 Thread Yaakov
Hi, I switched to using GWT 2.1.0 and updated my maven dependencies, so they now look like this: 2.1.0 3.0.5.RELEASE com.google.gwt gwt-servlet ${gwt.version} runtime com.google.gwt gwt-user ${gwt.version} provide

Re: Eclipse Hangs on Compile of GWT?

2010-11-05 Thread leslie
*** Begin copy of output Deadlock Detection: Found one Java-level deadlock: = "main": waiting to lock moni...@0x0080dcb8 (obj...@0x0fd193b8, a sun/misc/ URLClassPath), which is held by "GWT Update Checker" "GWT Update Checker": waiting to lock moni...@0x008

Re: Eclipse Hangs on Compile of GWT?

2010-11-05 Thread leslie
Thanks for your help! I have a text file of the generated output which indicates a deadlock. I briefly looked at the output and I'll make two remarks, 1 - The machine where I'm developing is not online. It has no connection to the internet. 2 - I am logged in as a standard user that is I am not

Unhandled exception type Exception -- GWT 2.1.0 (not in GWT 2.0.4)

2010-11-05 Thread Barry
Hi -- I have just installed the GWT 2.1.0 (... I was running GWT 2.0.4). Now my JUnit tests are failing. It seems that GWT calls to my servlets are taking the onFailure(Throwable ex) method on my AsyncCallBacks. The exception is pretty peculiar: java.lang.Error: Unresolved compilation problem:

Re: Eclipse Hangs on Compile of GWT?

2010-11-05 Thread Rajeev Dayal
When it's hanging, drop to a command prompt, and type jps. That should give you the process id of the compiler process. Then type "jstack ". Copy that output into a file and attach it. If you switch over to the "Console" view while the compile is going on, what do you see? What happens if you hit

Eclipse Hangs on Compile of GWT?

2010-11-05 Thread leslie
Eclipse 3.6 Helios GWT 2.1 Java 5 Mac OS X 10.5.8 Actually I don't know if it's hanging or not. But I select the red toolbox - the compile icon - and I can see the progress bar at the lower right hand of the screen. But it just progresses continually. There is no output and it has been going on

RE: Exceptions not showing up in Dev Mode Panel

2010-11-05 Thread Perelman Nathan (Nathan)
That was it, thanks for the quick help. Adding $entry() around my callbacks fixed it. _ From: google-web-toolkit@googlegroups.com [mailto:google-web-tool...@googlegroups.com] On Behalf Of John Tamplin Sent: Friday, November 05, 2010 15:17 To: Rajeev Dayal Cc: google-web-toolkit@googleg

How to diagnose IE8 javascript error "stack overflow at line: 0"? ends up in Impl.entry0

2010-11-05 Thread BrianP
I have a GWT 2.0.3 app that runs fine in Firefox and Chrome. But when run in IE8 I get a javascript error that pops up with 'Stack over flow at line: 0'. When stepping through it in debug mode, I end up in GWT class Impl in the method entry0(Object jsFunction, Object thisObj, Object arguments). I

Re: Exceptions not showing up in Dev Mode Panel

2010-11-05 Thread John Tamplin
Are you using any JSNI that gets called directly from the browser? Ie, anything like obj.callback = function() {...};? If so, you have to wrap any entry points from the browser into GWT code with $entry, so that would look like obj.callback = $entry(function() {...}); Note that it could be in li

Re: Exceptions not showing up in Dev Mode Panel

2010-11-05 Thread Rajeev Dayal
+[jat] On Fri, Nov 5, 2010 at 2:42 PM, Perelman Nathan (Nathan) < nperel...@lgsinnovations.com> wrote: > No, I didn’t want to go to the trouble of converting my existing Eclipse > projects. > > > -- > > *From:* google-web-toolkit@googlegroups.com [mailto: > google-we

Re: UiBinder fails after upgrading to gwt 2.1.0

2010-11-05 Thread pgraham
Right, I suppose I should mention that I am running Kubuntu 10.04 64 bit, eclipse 3.6 with the lastest GPE. On Nov 4, 2:11 pm, will0 wrote: > Same issue as pgraham on Ubuntu 10.04, eclipse 3.6. > This doesn't happen for eclipse 3.5 on the same machine. It also works > on Windows 7 ultimate 64bit

Error in generating report

2010-11-05 Thread Bruno Santos
I'm trying to generate a report using JaperReports, but when I click generate the following error appears in eclipse: [WARN] /seringueira/resumosafra java.lang.RuntimeException: Unable to report failure at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doUnexpectedFailure(Abs

RE: Exceptions not showing up in Dev Mode Panel

2010-11-05 Thread Perelman Nathan (Nathan)
No, I didn't want to go to the trouble of converting my existing Eclipse projects. _ From: google-web-toolkit@googlegroups.com [mailto:google-web-tool...@googlegroups.com] On Behalf Of Rajeev Dayal Sent: Friday, November 05, 2010 14:21 To: google-web-toolkit@googlegroups.com Subject: R

Re: onWindowClosing not reacting to "Cancel" user input in IE6/7/8 when $wnd.redirect used

2010-11-05 Thread Andy_W
Nevermind, worked around it by making a different popup on logoutit's still a bug though. On Nov 5, 12:35 pm, Andy_W wrote: > Sorry that would be $wnd.location as in the code... > > I am at a loss as to how to fix this! > > On Nov 4, 10:53 am, Andy_W wrote: > > > Hi, > > > I have the followi

Re: Redirect into a hash-style URL causes a reload in IE

2010-11-05 Thread Gal Dolber
Thanks, I didn't even try to find a solution. It's incredible how I hate ie more and more every day On Fri, Nov 5, 2010 at 11:12 AM, Andy wrote: > We just ran into this and hopefully if you come across this I can save > you from having to go through the same painful day of debugging that I > jus

Re: Problem with DialogBox

2010-11-05 Thread John LaBanca
> > You can only call setWidget once on a DialogBox. To be clear, you can only call "addWidget" once on a DialogBox, correct? Thanks, John LaBanca jlaba...@google.com On Fri, Nov 5, 2010 at 2:24 PM, skippy wrote: > You can only call setWidget once on a DialogBox. > When I use UI Binder, the c

Re: DockLayoutPanel inside UiBinder requires height="100%"

2010-11-05 Thread Jeff Schnitzer
This requirement should *really* be mentioned in the javadocs for DockLayoutPanel. Searching this list, a lot of people seem to be stumbling on this issue. Jeff On Thu, Nov 4, 2010 at 8:04 PM, Rud wrote: > More specifically it needs to be inside a layout panel of some type, > or reference as a

Re: Problem with DialogBox

2010-11-05 Thread skippy
You can only call setWidget once on a DialogBox. When I use UI Binder, the compilers tells you that you can not do this. However, whe not UI Binder, you get that run time error. I was adding the HTML widget after a vertical panel rather then adding it to the vertidal panel. Thanks. I hope this h

Re: Exceptions not showing up in Dev Mode Panel

2010-11-05 Thread Rajeev Dayal
Are you using the Google Plugin for Eclipse? On Fri, Nov 5, 2010 at 2:19 PM, Nathan wrote: > I'm using GWT 2.0.4 and in Dev Mode it seems some exceptions are left > uncaught and show up in the browser instead of in my GWT uncaught > exception handler or in the Dev Mode panel. For example I get a

Exceptions not showing up in Dev Mode Panel

2010-11-05 Thread Nathan
I'm using GWT 2.0.4 and in Dev Mode it seems some exceptions are left uncaught and show up in the browser instead of in my GWT uncaught exception handler or in the Dev Mode panel. For example I get a line like "uncaught exception: com.google.gwt.dev.shell.HostedModeException: Something other than a

Re: how to run pure java backend setup code in GWTTestCase?

2010-11-05 Thread Hilco Wijbenga
On 5 November 2010 10:54, Potate wrote: > I have a GWTTestCase that validates some GETs and POSTs to a servlet. > The servlet starts up a little differently than the traditional > servlets. So I can't use the builtin unit test servlet bootstrap in > module.gwt.xml. > It's easiest if I can run any

Re: Handling ClickEvents with custom composite widgets

2010-11-05 Thread nathan
I tried event.getSource() but since I created a custom widget, called CompositeWidget, and I'm listening for a click in the LeftPanel, I believe event.getSource() is returning LeftPanel, not the CompositeWidget. So the contents of the CompositeWidget are not available from event.getSource(). I coul

Re: Showing facebook like button using GWT code

2010-11-05 Thread RPB
Hi Aditya, The problem is that you can't call a widget tag inside of an existing enclosure (i.e. the GWT generated js code). See this thread for more details: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/9a81056219c54470/dbf4fd62e9ed41ef?lnk=gst&q=tag+referencing+the+tw

how to run pure java backend setup code in GWTTestCase?

2010-11-05 Thread Potate
I have a GWTTestCase that validates some GETs and POSTs to a servlet. The servlet starts up a little differently than the traditional servlets. So I can't use the builtin unit test servlet bootstrap in module.gwt.xml. It's easiest if I can run any pure java methods. When I tried this, I got compile

GWT Designer and Data Binding

2010-11-05 Thread csaffi
Hi everybody, I happily discovered that Google has released GWT Designer free for use, and I immediately downloaded it for testing. Unfortunately I realized that it lacks data binding features to bind data with UI components... Maybe it will be introduced in future versions, but for now remains a g

Re: GWT's Event class behaves differently in IE or FF for "keypress" event

2010-11-05 Thread Thomas Broyer
On 5 nov, 12:10, Sorinel C wrote: > - Open this page:http://www.quirksmode.org/js/keys.html with both > browsers (Internet Explorer and Firefox). > - Choose the "keypress" event for Testing. > - Click on a numeric key (0,1,2,3 ... 9) > > You'll see that the FF and IE have different results. > >

GWT Loading the application very slowly

2010-11-05 Thread keyboard_samurai
Hi All, I am facing a issue which seems to have cropped up in recent times in our code. We are using GWT 1.7.1 along with GXT 2.2 widget libraries. Till a few days back the application was getting loaded i.e with the data within 5-10 seconds ... the cache.html which was getting generated back then

Re: CompositeCell and hiding Cells Problem

2010-11-05 Thread John LaBanca
The default implementation of the render method in CompositeCell wraps each element in a span. You could do the same and set the display style property based on the state, and then you don't need to extend SelectionCell. While it isn't required for very simple Cells (that only render a single ele

Re: CompositeCell and hiding Cells Problem

2010-11-05 Thread Ümit
Ah I see ;-) However I somehow can't access the styles and the span respectively. The render method of the SelectionCell renders the tag directly (I suppose the span is rendered by the CellTable itself). I solved my problem by extending the SelectionCell and storing a isVible Flag in it and then

Re: CompositeCell and hiding Cells Problem

2010-11-05 Thread John LaBanca
Sorry, I was referring to the CSS property display, and I meant "none", not null. Rendering the following will cause the span to be completely hidden and take up no space. My cell content Thanks, John LaBanca jlaba...@google.com On Fri, Nov 5, 2010 at 11:24 AM, Ümit wrote: > Thanks John for t

Re: Problem with DialogBox

2010-11-05 Thread John LaBanca
Can you send a screenshot? Thanks, John LaBanca jlaba...@google.com On Fri, Nov 5, 2010 at 11:51 AM, skippy wrote: > I have several DialogBox popup views in my application, > > After adding a HTML object to one, it now opens in peices. You can > not even tell it is a DialobBox. Like it is sp

Problem with DialogBox

2010-11-05 Thread skippy
I have several DialogBox popup views in my application, After adding a HTML object to one, it now opens in peices. You can not even tell it is a DialobBox. Like it is spilling out of itself. Any help would be great! Skippy -- You received this message because you are subscribed to the Google

Re: CompositeCell and hiding Cells Problem

2010-11-05 Thread Ümit
Thanks John for the quick response. One question though. I am not sure what you mean with "setting the display to null". I checked the specific classes (SelectionCell, AbstractCell etc) but couldn't find anything which allows me to set the display to null. Maybe you can specify what you mean with

Instant Messenger portlet

2010-11-05 Thread Shaji
Hi , I am trying to integrate instant messenger gwtapp with portlet from the link http://vinaytechs.blogspot.com/2009/09/tutorial-writing-instant-messenger.html I have got the source code from ryan dews book which works fine in my local intellij as well as tomcat webapps. I am able to use instant

Redirect into a hash-style URL causes a reload in IE

2010-11-05 Thread Andy
We just ran into this and hopefully if you come across this I can save you from having to go through the same painful day of debugging that I just experienced. The issue basically works like this: Suppose you have a login page at /login and after a successful login, you redirect into your gwt app

Joseph Favara/HQ/Corp/OAI is out of the office.

2010-11-05 Thread Joseph . Favara
I will be out of the office starting 11/05/2010 and will not return until 11/15/2010. I will respond to your message when I return. If this is urgnet please contact Narayanan Pillai at 105986 -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" gro

Native GWT form fields validation framework plans?

2010-11-05 Thread marius.andreiana
Hi, There is a common, recurring topic about doing form fields validation in GWT. Here's a good analysis of the current validation frameworks done by Brendan https://wave.google.com/wave/waveref/googlewave.com/w+sVgB2_shE and more discussions at http://groups.google.com/group/gwt-platform/browse_

Re: Using REST with GWT

2010-11-05 Thread Harald Pehl
I'm successfully using Restlet in several projects: http://www.restlet.org. Restlet comes in different editions: GAE, JEE, JSE, GWT and Andoid. So you can use it on the client and server side. - Harald On Nov 5, 2:05 pm, "marius.andreiana" wrote: > On Nov 5, 12:29 pm, Andreas wrote:> We're star

Re: Using REST with GWT

2010-11-05 Thread bconoly
We actually use a JAXB marshaller on our server to unmarshall responses from our rest services and then send those objects directly down to the client via GWT RPC. The way to accomplish this is to create a simple GWT project and copy and paste the jaxb source into it. Once done create your gwt.xm

Re: tips on speeding up development with Eclipse?

2010-11-05 Thread marius.andreiana
On Nov 5, 12:36 am, David Chandler wrote: > Hi Marius, > > Indeeds, changes such as these are only useful for speeding up GWT > compilation. If you're running in dev mode, they aren't necessary. good to know! I wasn't sure. > There is a project underway to speed up dev mode. Are you seeing long >

Re: Using REST with GWT

2010-11-05 Thread marius.andreiana
On Nov 5, 12:29 pm, Andreas wrote: > We're start a project using gwt 2.1. What is the best way to > communicate with a rest interface. Especially how to batch multiple > requests and how to cache response on the client using webstorage or > other client side technics. Until you get more answers, f

Re: SelectionModel and ListDataProvider are out of synch

2010-11-05 Thread John LaBanca
The SelectionModel shouldn't depend on the data in the ListDataProvider because it is independent of the data source. Consider a SelectionModel that has an option to select all unread messages. You probably don't have all of the user messages loaded on the client, but the unread messages should b

Re: CellTree "show more" not working for top level elements.

2010-11-05 Thread John LaBanca
Thanks for reporting this bug. I created an issue to track it: http://code.google.com/p/google-web-toolkit/issues/detail?id=5547 Thanks, John LaBanca jlaba...@google.com On Thu, Nov 4, 2010 at 4:53 PM, ben.ol...@gtri.gatech.edu < ben.ol...@gtri.gatech.edu> wrote: > The "show more" link is visi

Re: CompositeCell and hiding Cells Problem

2010-11-05 Thread John LaBanca
As far as the SelectionCell, we should have a version that is genericized and just use the selected index to map to the generic value. In general, we probably also need an "EditCell", which is basically a two state cell that can enter and exit edit mode. I'm sure that as people use the Cell Widge

Re: DecoratedPopupPanel VS DialogBox

2010-11-05 Thread John LaBanca
> > 1) What's the difference? DialogBox has a caption bar and support dragging, making it more like a window. DialogBox is a subclass of DecoratedPopupPanel. 2) Which are the PROs and CONs of each one? Both have the same set of methods. DialogBox supports a caption bar, so if you need one, us

Re: onWindowClosing not reacting to "Cancel" user input in IE6/7/8 when $wnd.redirect used

2010-11-05 Thread Andy_W
Sorry that would be $wnd.location as in the code... I am at a loss as to how to fix this! On Nov 4, 10:53 am, Andy_W wrote: > Hi, > > I have the following code to prompt the user that if they navigate > away "bad stuff" could happen: > >         /** >          * Adds a handler to show warning wh

SelectionModel and ListDataProvider are out of synch

2010-11-05 Thread Mirco Dotta
Hi guys, I'm experiencing an annoying problem with my SelectionModel beeing out of synch in respect of the data stored in my ListDataProvider. Maybe I'm doing something wrong, but I guess there is a suddle bug that prevents to correctly update the selection model when the data in the ListDataProvi

Re: GWT+Roo a few days later

2010-11-05 Thread dr1337
I too have recently been playing around with GWT and Spring Roo over the past few days to see what all the hype was about during Google IO. So far, my assessment of it has been similar to yours Amir. It's great if all you need is a simple UI for a database editor but anything else that requires mor

Error in GWT tutorial with keyboard listener

2010-11-05 Thread nicolas saubi
Hello there, Well, seems so at least... On page : http://code.google.com/webtoolkit/doc/1.6/tutorial/manageevents.html Fact is we are said to do a keyboard listener and to test the key pressed using this part of code : if(event.getCharCode() == KeyCodes.KEY_ENTER) Which seems odd to me as KEY_EN

How do you manage static contents/pages along with gwt?

2010-11-05 Thread Y2Kenny
I have been using Django with GAE/Python and recently I have been considering switching to GAE/J and GWT. My questions are 1) Is there a way to do hierarchical templating similar to the Django template system? 2) How do you manage static contents with/along with GWT in general? I have been diggi

Re: Application works in devlopment mode but not in war file

2010-11-05 Thread branni
Yes, it is at the stack trace. Tip: Tipical difference between hosted mode and a deployed app the async methods problems. You'd like to use the result of the method before that return with the value. Sorry for my bad English... -- You received this message because you are subscribed to the Go

CompositeCell and hiding Cells Problem

2010-11-05 Thread Ümit
I have an issue with the CompositeCell in a CellTable. My CompositeCell consists of 3 ActionCells and a SelectionCell. However the difference to a normal behaviour of a CompositeCell is that I don't show all Cells at the same time but based on some state in a domain object. Here is what I try to a

Download not working

2010-11-05 Thread Bruno Santos
The following download is not working: http://code.google.com/p/google-web-toolkit/downloads/detail?name=Tutorial-Contacts2-2.1.zip&can=2&q = -- 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-t

GWT's Event class behaves differently in IE or FF for "keypress" event

2010-11-05 Thread Sorinel C
- Open this page: http://www.quirksmode.org/js/keys.html with both browsers (Internet Explorer and Firefox). - Choose the "keypress" event for Testing. - Click on a numeric key (0,1,2,3 ... 9) You'll see that the FF and IE have different results. * IE for key "2" keypress keyCode is 50 charCode

Roo Gwt 2.1 DialogBox Activity

2010-11-05 Thread Patrick Hilsbos
Hi, I have an roo-generated gwt project that deals with requestfactory editordriver and so on. now i want to move e.g. the create or edit part of an proxy to a dialog box (actually its rendered to a area of my layoutpanel). whats the best practice to do that? thanks in advance! patrick -- You

Using REST with GWT

2010-11-05 Thread Andreas
We're start a project using gwt 2.1. What is the best way to communicate with a rest interface. Especially how to batch multiple requests and how to cache response on the client using webstorage or other client side technics. -- You received this message because you are subscribed to the Google G

GWT 2.0.4 Way to query browser window's document area size in onModuleLoad

2010-11-05 Thread magic
Hi, I am looking for a way to query the size of the browser's document window when onModuleLoad is called. I have tried Element body = RootPanel.getBodyElement(); int clientWidth = body.getClientWidth(); int clientHeight = body.getClientHeight(); body.getClientWidth() gives the correct width, bu

Tree with I18N

2010-11-05 Thread xworker
Hi I am wondering how to build a TreeItem with I18N and not have different tokens for a menu item. If I build a TreeItem like this: @UiField Tree tree; TreeItem customer = new TreeItem(customerGroup"); customer.addItem("searchCustomer"); customer.addItem("create");

Re: DecoratedPopupPanel VS DialogBox

2010-11-05 Thread alexoffspring
- DialogBox can be Dragged and Dropped by default while the DPP cannot. - DB has center() and SetText() Method; DPP uses show(). - I cannot see the possibility to extend them in order to have the 'minimize'/'maximize'/'close' button like a desktop window (as in SmartGWT). Anymore? On 3 Nov, 0

Re: Handling ClickEvents with custom composite widgets

2010-11-05 Thread Amir Kashani
I'm not sure I completely followed your example, but have you tried event.getSource()? It'll be == to the widget that originated the event. So, if you attach the same ClickHandler to all of the widgets, you could use it to differentiate between the sources. - Amir On Nov 4, 11:58 am, nathan wrot

Re: extending PushButton results in "invalid child namespace" error in UIBinder

2010-11-05 Thread Amir Kashani
Instead of use The namespace of the child element must match that of its parent. - Amir On Nov 4, 5:47 pm, KaffeineComa wrote: > I have a simple class that extends PushButton to add a tooltip-like > popup. It seems that if I try to use this class in UIBinder with > PushButton's upFace, I get

Re: GWT 1.7 - Development Environment using Eclipse, unable to find on classpath

2010-11-05 Thread Panke
It is called WatchdogMain.gwt.xml (with a lowercase D) and is located at de/spenarion/Watchdog -- 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-tool...@googlegroups.com. To unsubscribe from th