Re: widget invisible after AbsolutePanel.SetWidgetPosistion(widget,x,y)

2010-05-23 Thread outsource lucas
sorry guys, i have solved this myself already. you have to set the size of the absolutepanel explicitly at least once somewhere and then it works On May 23, 1:23 am, outsource lucas outsourcelu...@gmail.com wrote: I added a widget (a vertical panel with a few buttons) to an absolutepanel, this

how to get the max screen size (useable screen area of the browser)

2010-05-23 Thread outsource lucas
how to get the max screen size? (talking about useable screen area of the browser, not about the monitor resolution) do you first have to add a widget to the rootpanel and then call widget.getHeight and widget.getWidth? isnt there an easier/faster way? -- You received this message because you

On GWT I18N

2010-05-23 Thread dmen
I wanted to start a discussion about this as I usually get this ugly feeling when ever I take on GWT i18n . To begin with, I believe that internationalization is, inherently, a server side issue, so solving it on the client is the wrong way to do it. Moreover, the way it is done, by compiling the

Re: how to get the max screen size (useable screen area of the browser)

2010-05-23 Thread Thomas Broyer
On 23 mai, 10:21, outsource lucas outsourcelu...@gmail.com wrote: how to get the max screen size? (talking about useable screen area of the browser, not about the monitor resolution) do you first have to add a widget to the rootpanel and then call widget.getHeight and widget.getWidth? isnt

Re: Table Row Gaps

2010-05-23 Thread ben fenster
try setting padding and spacing to 0 On 21 מאי, 17:52, Chi H c...@chi.ca wrote: It sounds like this -https://developer.mozilla.org/en/Images,_Tables,_and_Mysterious_Gaps is what you're experience, On May 20, 11:14 pm, Craigo craig...@gmail.com wrote: When creating a Grid, FlexTable,

Re: What's the best/easiest way of doing server-side persistence with GWT?

2010-05-23 Thread Navigateur
So is anybody able to tell me if I should get GWT 2.1 M1 before trying Spring Roo, or should I just use Spring Roo now for Hibernate with GWT 2.0.3? (I've never used Spring Roo). I'll definitely be making a db4o version alongside this regardless. On May 22, 2:04 pm, Navigateur

XML or Database or File

2010-05-23 Thread Rijin
hei i want to create a text file in appengine store some info is it possible; else if connect to a database conn strigs ect[db in another server] else create a xml file and append tags if possible give code advanced thanks; -- You received this message because you are subscribed to the

Re: On GWT I18N

2010-05-23 Thread Stefan Bachert
Hi, I do not agree with you. First of all, my concept of an application is the ingenious variant of MVC. In the ingenious variant control means taking users input (That is not the same role as Spring Web MVC perceives a Controller where Controller means marshalling and doing business logic. The

Re: GWT RPC and GoDaddy

2010-05-23 Thread Stefan Bachert
Hi, I find SingleSignOn suspicious. GWT-Servlets gets in general only AJAX-Calls. This does not fit to the classical SSO approach to redirect to an other URL for authentication. Ajax-Calls have not assigned page as a gui, so any redirection will fail to ask for credentials So I think your

Re: On GWT I18N

2010-05-23 Thread VladS
GWT i18n works fine for huge projects with thousands of messages. For our smaller projects with hundreds of messages I'm going create adaptation for GWT of Java version of GNU gettext . In maven build I'm panning to use http://code.google.com/p/gettext-commons/ to extract messages. This should

Re: On GWT I18N

2010-05-23 Thread VladS
It is not so simple with server and client separation. For example reports (PDF, XLS). You can't do them on client to the server should be made aware of user language and presumably have the same translational table as client does. Other type of server-side code with i18n are e-mail messages.

History mechanism

2010-05-23 Thread Stefan Bachert
Hi, the history mechanism is based on urls. Urls are limited. My memory says 2KByte is the limit of an url. This implies, that the GUI-state may not exceed this limit, too. Do you agree with this? Stefan Bachert http://gwtworld.de -- You received this message because you are subscribed to the

Re: GWT RPC and GoDaddy

2010-05-23 Thread Mike Apolis
I'm not sure what this has to do with SSO? I'm not authenticating any user. Its the GWT sample stockwatcher app, there are no users to authenticate :) Since Mac OSX has problems with more than one JRE. I loaded the project on a windows machine and tried running it with JRE 1.5_22 Hosted Mode

gwt developer plugin for chrome mac

2010-05-23 Thread imgnik
I would like to request for gwt developer plugin for chrome mac. Without it, speed tracer seems redundant. If you also want gwt developer plugin for chrome mac, please star these issues: http://code.google.com/p/google-web-toolkit/issues/detail?id=4493

compile problems with GWT 2.1

2010-05-23 Thread jalynn2
I uninstalled the Eclipse Plugin and downloaded the new one from the site Google 2.1 plugin - http://google-web-toolkit.googlecode.com/svn/2.1.0.M1/eclipse/plugin/3.5. I am running Eclipse Galileo and also am building with Maven. I pushed the new jar files into my local Maven repository. WHen I

Re: compile problems with GWT 2.1

2010-05-23 Thread Paul Stockley
See my previous post http://groups.google.com/group/google-web-toolkit/browse_thread/thread/eb1b3369d6c1612e# On May 23, 1:17 pm, jalynn2 joe.a.l...@gmail.com wrote: I uninstalled the Eclipse Plugin and downloaded the new one from the site Google 2.1 plugin

Re: New session created on server side for every RPC request.

2010-05-23 Thread Manoj
I haven't faced an issue on this regard. How do you set the bean in the session? On May 22, 10:20 am, DK dmanchikalap...@gmail.com wrote: I have a session attribute thats set in the session when a user logs in (ex profile bean). once logged in, I have an RPC call to a remote service that tries

Re: History mechanism

2010-05-23 Thread Sripathi Krishnan
Not sure about the 2 KB thing, its browser specific. AFAIK, newer browsers allow more than 2K in the url. But in general, there is always a limit to the state that can be stored on the client side. After a certain point, you'd have to store opaque tokens that can only be understood by the server.

Re: What's the best/easiest way of doing server-side persistence with GWT?

2010-05-23 Thread Manoj
First of all i don't have experience with Spring Roo. The demo during Google I/O was interesting but I am skeptical about its real life usage especially in medium to big projects. Check this out - http://groups.google.com/group/gwt-platform/browse_thread/thread/862cab91ccb28d40. I remember seeing

Re: History mechanism

2010-05-23 Thread kozura
The URL token can also refer to an object that captures state locally on the client. I do this as I have no simple state token which can represent what is showing on the screen. This works great for history, however the link is of course not transferable to another browser session. For that,

Re: compile problems with GWT 2.1

2010-05-23 Thread Blessed Geek
Dear GWT 2.1M1 releasors, I have encountered the same issue as Paul. Why is there a bikeshed demo project included when I enable GWT2.1M1 in Eclipse. It used to be, when I enabled GWT2.0, there would be only two jar files - gwt-dev and gwt-user. However, with 2.1M1, there is an extra bikeshed

Re: compile problems with GWT 2.1

2010-05-23 Thread Thomas Broyer
On 23 mai, 19:17, jalynn2 joe.a.l...@gmail.com wrote: I uninstalled the Eclipse Plugin and downloaded the new one from the site Google 2.1 plugin -http://google-web-toolkit.googlecode.com/svn/2.1.0.M1/eclipse/plugin/3.5. I am running Eclipse Galileo and also am building with Maven. I pushed

Re: compile problems with GWT 2.1

2010-05-23 Thread Blessed Geek
I went into bikeshed jar in gwt2.1m1 plugin directory in eclipse and edited ValueStore.gwt.xml to insert the line inherits name='com.google.gwt.requestfactory.RequestFactory'/. After which, GWT copiulation proceeded without error and my application ran without error or interference from

Re: Table Row Gaps

2010-05-23 Thread Craigo
Thanks Chi H. That was exactly my problem (I was only using images in my tables). And, as the article states, when using images, adding td img {display: block;} removes the gaps. Cheers. On May 22, 2:52 am, Chi H c...@chi.ca wrote: It sounds like this

Will we ever see a scrolling CellTable?

2010-05-23 Thread Craig Day
The new CellTable and PagingListView/ListView programming model is really nice, great work guys!! but the glaring omission I can see in the M1 drop is a table that has a scrolling data area and a fixed header/footer, as opposed to a paging table. Now I understand that it's only the first

RPC callback fails: status code 0

2010-05-23 Thread Sky
Hi all. I did the Stockwatcher RPC tutorial and it worked beautifully. I then implemented my own very simple RPC callback for my own project and I always get status code 0 returned... the callback always fails. Funny thing is that the server method does indeed run, I debugged into it. Only the

MMLc: a Tool to convert HTML in GWT widgets

2010-05-23 Thread Davi Pires
Hi all, I'd like to announce that the tool I mentioned here earlier (6 months ago) has finally been opened. We call it MMLc. From the project description: MMLc is a GWT generator that processes files written in an enriched HTML like syntax and outputs code that instantiates the precise widgets