Re: One Application, Multiple Modules (Developed Independently)

2008-08-25 Thread mon3y
HI Well yes, what you have described in the beginning part can be done, so long as Panel A does not communicate with Panel B at compile time, or better said, as long as Panel A does not need/have any references to Panel B. Essentially you can have the following senario: 1) Framework is built

Re: Flex or GWT for JavaEE RIA development?

2008-08-25 Thread Kris Hofmans
Hello, I would like to offer some insights into this, I have had some GWT experience and currently I am working on a large Flex project (flex 3 + granite ds (like blaze ds but with some additional nifty features)). First I would like to contradict a couple of people in this thread, the flash

Stylesheet madness, which where and how?

2008-08-25 Thread kris
I am somewhat confused about what default or existing GWT stylesheets. It appears that there is a default look to widgets, since the widget gallery has them looking pretty. Where is some CSS I can link to and an image set, kinda like how YUI does. I want to add additional CSS for my app, but I

User Registration/Email verification

2008-08-25 Thread don
All, I'm trying to create a web site that uses a customary pattern where the user first registers, an email is send to the user's email address, then they come back to verify their email address. I've got the registration part working, the email is being sent, but I'm fuzzy on what the GWT way

TextBox.setFocus() not working as expected in Firefox

2008-08-25 Thread Derek Battams
package sample.test.client; import com.google.gwt.core.client.EntryPoint; import com.google.gwt.user.client.ui.FocusListenerAdapter; import com.google.gwt.user.client.ui.RootPanel; import com.google.gwt.user.client.ui.TextBox; import com.google.gwt.user.client.ui.VerticalPanel; import

Text Area autosize

2008-08-25 Thread sri
Hello, I'm new to GWT. Is there a way to NOT have a scrollbar for the TextArea and have it grow automatically when data goes beyond the visible lines? We do not use gwt-ext. I was able to take the scrollbar out with overflow:hidden but was not able to do the autosize part. Thanks in advance for

Re: Flex or GWT for JavaEE RIA development?

2008-08-25 Thread Thomas Broyer
First, thanks a lot for those details! But... ...how about compiling Java code into SWF through GWT? (see http://www.slideshare.net/cromwellian/gwt-extreme from slide 44) On 25 août, 09:11, Kris Hofmans [EMAIL PROTECTED] wrote: Hello, I would like to offer some insights into this, I have had

Re: Newbie - Drag and Drop

2008-08-25 Thread Fred Sauer
Damian, I've added a much simpler getting started example to the wiki. Hopefully new comers will appreciate it: http://code.google.com/p/gwt-dnd/wiki/GettingStartedWith2_x Thanks for bringing this up. Fred Sauer [EMAIL PROTECTED] On Fri, Jul 11, 2008 at 9:06 AM, Damian Sobieralski [EMAIL

Re: random java.lang.AssertionError:

2008-08-25 Thread alex.d
I've forgotten to mention that this seems to happen only in hosted mode. Another thing: i have a strange feeling that this happens when two classes try to set two different Images to the same URL while application loading (at the same time???). Is that somehow possible?

Re: Problem with applaying z-index in firefox

2008-08-25 Thread Jason Morris
As far as I know all versions of Firefox have this problem. Any HTML will always sit behind a flash object. I've never seen anyone fix it, and it really frustrates me when I hit a site that puts their navigation menu on top of a flash object, because it makes the site totally unusable. Bottom

Re: Microsoft GWT clone

2008-08-25 Thread Magno Machado
Depending on the level of the performance penalty, loading class on demand is much better than downloading all the application on start up, as GWT does. Another advantage of generate JS from compiled code is that one can write a lib and don't have to make the sources available for users.

Re: Using firefox instead of IE on windows

2008-08-25 Thread Len
do you mean in hosted mode ? On 24/08/2008, Asaf [EMAIL PROTECTED] wrote: Hi everybody, I downloaded the new gwt 1.5 rc2. Since I have a problems with the IE on my windows OS I was wondering whether its possible to configure the GWT to enable debug sessions via Firefox. Thanks in

Re: One Application, Multiple Modules (Developed Independently)

2008-08-25 Thread walden
On Aug 22, 9:07 am, Mickey [EMAIL PROTECTED] wrote: I think one of us is still missing some points (hopefully it's me). So let me try to clarify. On Aug 21, 3:00 pm, walden [EMAIL PROTECTED] wrote: Thanks for the reply. What I mean by developed independently is that a core UI

Re: newbie: List ArrayList, what i'm doing wrong?

2008-08-25 Thread Ian Petersen
You need to either upgrade to GWT 1.5, or follow the directions in the exception and use only Java 1.4-compatible source. Ian --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: Google Maps API and 1.5RC1

2008-08-25 Thread Eric Ayers
Hey Evan, This sounds kinda familiar. Can you look at the content of the exception? In hosted mode, click on the exception in the tree part of the development shell - the stack trace for the exception should display in the Status window below. If it is what I think it is - a problem in the

GWT as a component base framework !!

2008-08-25 Thread Sam
Hi , I am trying to integrate GWT with my exsisting application. What ever I learnt about GWT so far implies that GWT allows user to develop the different components (e.g. table,tree etc) and these components can be reused as and when required. We are currently planning to develop a framework

whole screen moves up and down on hitting tabs

2008-08-25 Thread neversaydie
i have panel which displays google maps and many other panels with other information. the problem is if i use tab key on the google maps panel, the focus will be set on terms and use but the panel all the other panels moves up from the window. i want mapwidget to get adjusted so that it will

How to Integrate a component inside HTML.

2008-08-25 Thread Sam
Hi I have a class named GCAComponent and this class has a method drawMenuBar(String location) . In this method I have written a code to draw the menubar, at specified loacation (using the API RootPanel.get(location).add(menubar)). Note that the class GCAComponent DOES NOT implent EntryPoint

Google Maps API and 1.5RC1

2008-08-25 Thread Evan Ruff
Hey guys, I'm having some build issuses getting up and running with Google Maps API. Either I'm attempting to use an old/incompatible jar that I found or I need to build from source and I'm having some trouble with that as well. The current JAR that I'm using is gwt-google-apis-r41. When I

Query : Synchronous calls in GWT

2008-08-25 Thread ping2ravi
Hi All, Does any one know how to make Synchronous calls using GWT. Currently i am using GWT to build services, creating files like com.app.client.MyService.java //One function in this interface doMyTask(ParamTpye myparams) throws ClientException; com.app.client.MyServiceAsync.java //One

How we can stop control until we receive complete response from GWT

2008-08-25 Thread feroz
Hi How we can stop control until we receive complete response in GWT. Control will execute next source before the completion of response. how we can stop control until response will be processed completely. thanks --~--~-~--~~~---~--~~ You received this message

Re: DTO feed to Suggest Oracles

2008-08-25 Thread eggsy84
Hi all For those interested I have worked out how to do this. I have provided a quick tutorial on my blog at: http://eggsylife.blogspot.com/2008/08/gwt-suggestbox-backed-by-dto-model.html Regards, On Aug 21, 12:00 pm, eggsy84 [EMAIL PROTECTED] wrote: Hi all, In the following post:

Re: How to Integrate a component inside HTML.

2008-08-25 Thread Sam
Hello Lan , Thanks a lot for the reply. so do you mean to say that its not possible for me to go on building the custom widgets as per my product need and let the developers use them as and when required WITHOUT actually exposing them to the GWT technology ? What I was thinking is , it could be