GWT MULTI MODULES WITH MAVEN PROFILE

2009-11-25 Thread Francesco Izzi
Hi all, there is a way to set a multi gwt project with maven profiles? For examples: It should be nice have a way to activated profile with -Pmodule1. in other words the ability to view a module or not depending on whether the maven profile is activated. Best Regard, -- Francesco Izzi CNR -

Converting from MouseListeners to Mouse*Handlers

2009-11-25 Thread ky
I'm converting all the MouseListeners in an old hobby project into Mouse*Handlers instead. My old MouseListeners were somewhat complex and followed this form: public class TooltipListener implements MouseListener { some private variables declarations here public void onMouseDown(W

Re: Serializing types that have only been included as a map generic in remote interface fails

2009-11-25 Thread krishna
Same issue here. Should this be raised as an issue? Good workarounds? Regards, Krishna On Oct 16, 10:42 pm, Tercio wrote: > Same issue here > > com.google.gwt.user.client.rpc.SerializationException: > com.test.action.BatchAction >         at > com.test.action.ActionService_TypeSerializer.rai

flextable getcellcount and clear issue...

2009-11-25 Thread golfdude
gwt 1.7... I have a flextable in which I add a row, clear the table, and then add another row. The getCellCount does not get reset during the second add to zero. So the cells get added after the first col count. Anybody else see this ? I see that this was reported as a bug in 2006 but I still se

Re: Problem to structure GWT application (problème pour structurer l'application GWT)

2009-11-25 Thread Sripathi Krishnan
Approach 1 is the way to go with GWT. See this discussion thread. GWT doesn't play all that well with Struts (or any other server side web-framework). Use the approach if you are st

HMVP design pattern? Help!

2009-11-25 Thread Grary
Hi, I'm new to GWT development, but the tutorials and project samples I've inspected have impressed me with the value of using the MVP pattern (and associated libraries for that.) Great. But now, as regards planning the development of my GWT app, do I think about separate parts of a given page eac

PopupPanel.center() not working in Firefox 3.5.5

2009-11-25 Thread David T
Hi All, I'm trying to use the provided PopupPanel.center() method to center a popup panel on the screen. This works fine on Opera and Safari centering the popup relative to the browser window. In Firefox though it centers the popup relative to the entire page. I've tried to implement my own cente

PopupPanel.center() not working in Firefox 3.5.5

2009-11-25 Thread David T
Hi All, I'm trying to use the provided PopupPanel.center() method to center a popup panel on the screen. This works fine on Opera and Safari centering the popup relative to the browser window. In Firefox though it centers the popup relative to the entire page. I've tried to implement my own cente

PopupPanel.center() not working in Firefox 3.5.5

2009-11-25 Thread David T
Hi All, I'm trying to use the provided PopupPanel.center() method to center a popup panel on the screen. This works fine on Opera and Safari centering the popup relative to the browser window. In Firefox though it centers the popup relative to the entire page. I've tried to implement my own cente

Re: Problems in sending http request manully by com.google.gwt.http.client.*

2009-11-25 Thread Yozons Support on Gmail
Javascript has no byte (or char) type, so I doubt it can do anything that returns or processes bytes directly. -- 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 uns

Problem to structure GWT application (problème pour structurer l'application GWT)

2009-11-25 Thread TalkinJive
Hi, I'm new with GWT. I've studied the StockWatcher tutorial. Now I want to do my application. But I can't understand how to organize it ??? Which is right (1° or 2°) ? 1°) A GWT application is made of only one HTML page. I have to develop different Panel inside (for exemple). 2°) A GWT applica

Re: Google Web Toolkit 2.0 RC2 Now Available

2009-11-25 Thread Open eSignForms
Thanks for RC2. I'm giving a try right now and it so far so good. Was there no change to the Firefox extension? Just checking since it was crashing FF pretty frequently under RC1. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post

Chrome extension with gwt

2009-11-25 Thread Gal Dolber
I'd like to share this project I made, is just proof of concept, but it has some interesting things, Greetings! http://code.google.com/p/gwt-gae-bookmarks/ -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email t

Re: GWT Developer Plugin works only sometimes

2009-11-25 Thread Gal Dolber
Hey, GWT 2.0 rc2 just got out! :) 2009/11/25 Yozons Support on Gmail > RC2? That's not yet been announced as available. Is it now? > > -- > 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

Re: CommandPattern vs Server side Event Bus?

2009-11-25 Thread hbraun
right, errai-bus might be what you are looking for. Is does server push and has an easy to use programming model. On Nov 17, 10:03 am, pedjak wrote: > > Sure by nature http does not support events instantiated on by the server. > > But there are some workarounds. Try to google for http server pus

DialogBox not displaying correctly

2009-11-25 Thread TD
Hi, I've edited the Starter Project to popup a DialogBox when I click a Label. However, the DialogBox appears all garbled. A screenshot can be found here: http://files.ducbase.com/GWT.png . This is the code I use: Label configLabel = new Label("Setup"); RootPan

Re: GWT Developer Plugin works only sometimes

2009-11-25 Thread Gal Dolber
And you also need to update the eclipse plugin. http://dl.google.com/eclipse/plugin/3.5/zips/gpe-e35-1.2rc1.zip :) 2009/11/25 Gal Dolber > Hey, GWT 2.0 rc2 just got out! :) > > 2009/11/25 Yozons Support on Gmail > > RC2? That's not yet been announced as available. Is it now? >> >> -- >> You

String problem

2009-11-25 Thread Gosia
Hi I''ve got small problem. I've an GWT application in which I would like do something like this String myString = new String("something"); String otherString = new String(myString.getBytes(),"windows-1252"); I'm writting code in Eclipse, and in code there aren't any problems. But when I'm tryin

GWT 2 RC1 working for anyone?

2009-11-25 Thread Sekhar
I'm having a terrible time trying to get 2RC1 to work. Almost every step is nightmare, like: (1) Refuses to install on FF (3.5.5) or IE 8 (8.0.6001.18372) - it says it's installed but complains that the plugin is missing when I restart - installs only on Chrome (4.0.249.11) for me. (2) I can creat

Re: dynamic Messages/ImageBundle possible?

2009-11-25 Thread kgeri
[Not sure if my previous post went through, so... ] For dynamic (string-accessible) message support take a look at this: http://code.google.com/p/gwt-dmesg I wrote it because we've faced the same problem a million times now in our GWT projects and it was annoying :) Hope it helps, comments

Re: Tool to convert HTML in GWT widgets

2009-11-25 Thread sridhar vennela
let me know. i can try. also attach some examples... On Wed, Nov 25, 2009 at 12:52 AM, gwtfanb0y wrote: > This sounds very interesting to me, please open up the code for us. > > > On 24 Nov., 22:32, Davi Pires wrote: > > Hi all, > > > > In my company, we have been working with GWT for almost a y

Re: Google Web Toolkit 2.0 RC2 Now Available

2009-11-25 Thread Sekhar
That was quick, thanks! All the issues I had (error loading module, FF not working, etc.) are gone; but I'm still having trouble with IE8: it installs, but keeps saying the plugin isn't installed. I'd uninstalled in Control Panel as suggested, and the new plugin is on the list now, but IE keeps ask

Re: GWT Developer Plugin works only sometimes

2009-11-25 Thread Sekhar
Thanks for raising this, hope Google fixes this soon. Meanwhile, here's a workaround that's working for me. Say you have a GWT2 module under com.allurefx.gwt2 and you're trying the sample greet app, then: (1) Remove the rename-to attribute for the module - when you run the app, it will create a di

Re: Full GWT Website with MS SQL Server 2008

2009-11-25 Thread Pascal Gouel
love your work dude!!! On Nov 24, 3:19 pm, Joe wrote: > Hello Everyone, Please check this website and any comments or reviews > are welcomed! > > http://www.property.com.lb > > A Website fully developed in GWT and connected to MS SQL Server 2008 -- You received this message because you are subs

Re: Google Web Toolkit 2.0 RC2 Now Available

2009-11-25 Thread armogur
is it possible, that java.util.Date behaves differently in devmode than production mode? i am using hungarian locale, and the getTimezoneOffset() function gives me different values on a Date object in devmode than production mode! On nov. 25, 21:52, John LaBanca wrote: > Hi everyone, > > We're g

Re: Making command pattern RPC look like traditional GWT RPC

2009-11-25 Thread Jamie Gennis
Another thing that I came across that other authors of generator libraries may also have problems with is testing classes that interact with a TypeOracle. I spent a couple hours last night updating my TypeOracleBuilder

GWT 2.0rc2 Date handling

2009-11-25 Thread armogur
is it possible, that java.util.Date behaves differently in devmode than production mode? i am using hungarian locale, and the getTimezoneOffset() function gives me different values on a Date object in devmode than production mode! -- You received this message because you are subscribed to the Go

Problems in sending http request manully by com.google.gwt.http.client.*

2009-11-25 Thread wangfeng
Hi guys, I am new in this field and this is a problem when I want to construct a http request and send it. Learn form GWT that I can send a request as follows: 1. String url = 2. RequestBuilder builder = new RequestBuilder (RequestBuilder.POST,URL.encode(url)); 3. builder.setHeader("

I18N Date problem

2009-11-25 Thread armogur
i just trying this new 2.0 rc1 gwit, and have a problem with the handling of the date (it is actually java.util.Date). using locale hu, with setting it in my Application.gwt.xml and in the hosting html. in my application, which is manages entities, and some entity have Date type field, i am selec

Re: dynamic Messages/ImageBundle possible?

2009-11-25 Thread kgeri
Hi! In our GWT projects we were faced with the dynamic message handling problem for a long time, and just recently I had the free time to code this module: Dynamic Messages for GWT: http://code.google.com/p/gwt-dmesg It does exactly what you need :) Comments and ideas are of course welcome. On

How to use "Add to client bundle" w/ GPE RC1 & RC2

2009-11-25 Thread Jeff Chimene
Hi, How does this feature work? The child browse dialog is empty. I've tried pasting the qualified name of a ClientBundle into the main dialog box. This yields the error "Missing client bundle type com.example.MainView$Resources" FWIW, I've been using the ClientResource & CSSResource since the R

Widget support for "setUserObject" like TreeItem

2009-11-25 Thread Open eSignForms
Is there any plan to allow more widgets to support "user objects" being tied to them so that when events occur on the widget, you can easily access the object it's related to in the application domain? I only see this in TreeItem, which is nice, since when a tree item is selected you can take appr

TabLayoutPanel css

2009-11-25 Thread P.G.Taboada
Hi, I am test driving TabLayoutPanel, but I can't find any css in the themes delivered by gwt rc1 | rc2 for this component. Am I missing something? brgds Papick -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, sen

Re: Development Mode Firefox 64bit Linux Issue

2009-11-25 Thread andreit
Same here, I am on Firefox 64bit Linux too. It fails to recognize that plugin already has been installed. Today I've updated plugin to to a latest version 0.9.7135.20091123192202, but still facing the same issue. On Nov 25, 10:16 am, alexmat wrote: > Dev mode starts up fine. Point firefox at the

Datepicker and week numbers

2009-11-25 Thread P.G.Taboada
Any plans to include week numbers to the calendar widget? brgds, Papick -- 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

Google Web Toolkit 2.0 RC2 Now Available

2009-11-25 Thread John LaBanca
Hi everyone, We're getting close! GWT 2.0 SDK RC2 and Google Plugin for Eclipse 1.2 RC2 are now available for you to try. Download the GWT 2.0 SDK RC2 here: http://code.google.com/p/google-web-toolkit/downloads/list?can=1&q=gwt-2.0.0-rc2 The full documentation is still a work in progress, but yo

How to position a PopupPanel like google does with error popups in Gmail

2009-11-25 Thread Jaap
Hi I'd like to have PopupPanel which I show at the top and in the centre of the screen when an error occured with a red background, with a small text like "Oops an error occured please try again" How do I do this? I'm struggling with getting the right CSS for this. Thanks Jaap -- You received

Re: Too much is happening (the events are crowding the bus)?

2009-11-25 Thread Arthur Kalmenson
I agree with Matt here. We also followed the same principle of having many smaller events, meaning a Presenter will get only the event it wants to listen to. Using an enum in the event could work too, but again as Matt pointed out you'll end up having if-then-else trees, which is hard to read, test

Re: gwt.i18n.client.Messages

2009-11-25 Thread Arthur Kalmenson
This document should help: http://code.google.com/webtoolkit/doc/1.6/DevGuideI18nAndA11y.html -- Arthur Kalmenson On Tue, Nov 10, 2009 at 12:57 PM, jianjun wrote: > I'm using the Messages. > What's the rule(s) to modify an existed Message? Will the translator > pick it up? > thanks, > > -- > >

Re: GWT Developer Plugin works only sometimes

2009-11-25 Thread Yozons Support on Gmail
RC2? That's not yet been announced as available. Is it now? -- 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-w

Re: GWT Developer Plugin works only sometimes

2009-11-25 Thread cromoteca
Hi, I'm happy to say that the loading issue seems to be completely solved in RC2. I haven't seen any other crash yet, but yes, I'm using Firefox 3.5.5. On 25 Nov, 17:58, Riley wrote: > After performing a clean install of Eclipse, GAE 1.2.6,  GWT 2 RC1, > and the new plugin, I'm getting the same

Re: GWT Developer Plugin works only sometimes

2009-11-25 Thread Riley
After performing a clean install of Eclipse, GAE 1.2.6, GWT 2 RC1, and the new plugin, I'm getting the same issue. When I create a new GAE+GWT project with the plugin and try to run it from dev mode in firefox, I get the following error: [ERROR] Failed to load module 'test' from user agent 'Moz

Am I in trouble?

2009-11-25 Thread Zé Vicente
Hello all, I gonna ask a very simple question! First an affirmation: I am using already the new features UiBinder, ClientBundle in my GWT project. We did a lot of code using those features. Is there any change that the final version of GWT 2.0 will bring me problems? Regards, José Vicente --

Re: GWT Developer Plugin works only sometimes

2009-11-25 Thread Charlie M
Just in case any one is intersted. I have raised an issue for this: http://code.google.com/p/google-web-toolkit/issues/detail?id=4274 Charlie M On Nov 25, 1:01 pm, Charlie M wrote: > Hi have exactly the same experince. > > I have followed it through with a debugger. Whats happening is for > wha

Re: GPE debug error: ContentViewer must have a content provider when input is set

2009-11-25 Thread Rajeev Dayal
Hey Jeff, Sorry it took me a while to get back to you. On Wed, Nov 18, 2009 at 5:43 PM, Jeff Chimene wrote: > > > On Wed, Nov 18, 2009 at 3:12 PM, Rajeev Dayal wrote: > >> Hi Jeff, >> >> This is a known bug that we'll have fixed for the next RC. >> >> To avoid this error, do not close the Web

Development Mode Firefox 64bit Linux Issue

2009-11-25 Thread alexmat
Dev mode starts up fine. Point firefox at the url, download and install plugin. Restart... and it asks me to install the plugin again. It is already installed though. Anyone else seeing this? Any advice? -- You received this message because you are subscribed to the Google Groups "Google Web To

Re: ScrollPanel - how to alter scrolling behavior

2009-11-25 Thread jhulford
You might be able to add a key listener to the scroll panel and use scrollTop to have it progressively jump down the elements inside the scrollpanel when the user hits down/up. On Nov 24, 9:33 am, Bruce Petro wrote: > I have a scroll panel that I fill with several lines of text, but I only > disp

Re: MenuBar in a Flextable cell

2009-11-25 Thread Brian
Ahh, that makes perfect sense. I'm glad there was a nice clean solution. Thanks for following up with that. -Brian On Nov 24, 1:58 pm, Sudeep S wrote: > Thanks a lot for your inputs Brian. > > Yes I am using an absolute panel for positioning. > > There seems to be a simple way to deal with this.

Re: GWT Developer Plugin works only sometimes

2009-11-25 Thread Charlie M
Hi have exactly the same experince. I have followed it through with a debugger. Whats happening is for whatever reason its assuming the module name includes the package path. This is the default unless you override it with the rename-to attribute in the module config. Since its just using the modu

Re: 500 - POST on hosted mode

2009-11-25 Thread Fon Vitale
Hi, Finally, it works. I don't know why, but reducing the number of attributes in the serializated class it works. But why? On 24 nov, 17:03, Yozons Support on Gmail wrote: > Gotta look at all your logs, console, etc.  Most likely it's a null pointer > exception or a some sort of serialization i

Invitation à se connecter sur LinkedIn

2009-11-25 Thread Minh Le
LinkedIn Minh Le requested to add you as a connection on LinkedIn: -- anoop, J'aimerais vous inviter à rejoindre mon réseau professionnel en ligne, sur le site LinkedIn. Minh Accept invitation from Minh Le http://www.linkedin.com/e/0KTeTtbY

Re: return this; doesn't always work with overlay type

2009-11-25 Thread Thomas Broyer
On Nov 25, 1:59 am, Kevin wrote: > Hi, > > I have an overlay-type class that has fluent interface (http:// > en.wikipedia.org/wiki/Fluent_interface): > >   private static class JsMap extends JavaScriptObject { >     public static final native JsMap create() /*-{ return {} }-*/; > >     protected

how to integrate pentaho reports into my GWT application.

2009-11-25 Thread Satya
Hi, I am new to GWT, currently I am developing a GWT application which has to generate reports by taking user input. I wanted to make use of pentaho reports for that purpose , but I dont know how to integrate pentaho with GWT. Please help me out with some useful information. Thanks in advance. Re

Re: issue injecting gwt .js file from webserver to webpage

2009-11-25 Thread chewy
Thank you , thank you , thank you. and bless your cotton socks! C On Nov 24, 6:05 pm, Thomas Broyer wrote: > On Nov 24, 5:37 pm, chewy wrote: > > > > > > > Hi, > > > I have built my application in GWT and the resulting .js file, I want > > to inject to my web page. > > This works fine locally.

Re: VerticalPanel insert and index

2009-11-25 Thread Ittai
Hi, I tested and saw that when the verticalPanel is created it will receive the index values of 0 and 1. and if you add by panel.add (widget) a label then you will be able to use 0,1,2 but still I have no way to manipulate the index myself Please has anyone any idea? On 24 נובמבר, 18:38, Ittai wr

Re: Google Web Toolkit 2.0 RC1 Now Available

2009-11-25 Thread grandfatha
After compiling a trivial sample app with the new GWT 2.0RC1 I can see a lot of functions with empty bodies in my compiled output. It looks like the following: function nh(){} function $h(){} function Zh(){} function oi(){} function wi(){} function Fi(){} function Ni(){} function Vi(){} function

Re: Tool to convert HTML in GWT widgets

2009-11-25 Thread gwtfanb0y
This sounds very interesting to me, please open up the code for us. On 24 Nov., 22:32, Davi Pires wrote: > Hi all, > > In my company, we have been working with GWT for almost a year, > developing a ridesharing application (http://www.bigoo.com.br). I > really can't overstate how much we enjoy de

Re: Using same RPC servlet by mutliple modules

2009-11-25 Thread smiletolead
Thanks for the reply Sripathi On Nov 23, 12:13 pm, Sripathi Krishnan wrote: > AFAIK - you can only specify a wild card at the end of the URL. A * in the > middle is treated as a literal, and not a wild card. > > See -http://www.velocityreviews.com/forums/t133725-using-wildcard-characte... > > --S