SimpleRadioButton getValue() ?

2010-05-20 Thread bch...@gmail.com
Greetings, I have the following snippet : SimpleRadioButton r1 = SimpleRadioButton.wrap(DOM.getElementById(radio1)); r1.getValue(); // expected method does not exist. DOM.getElementAttribute(r1.getElement(), value) ; // This works fine. My question is : is this the intended way to use

FF, LayoutPanel and input button

2010-05-20 Thread Stefan Bachert
Hi, FF has a defect regarding absolute positioning while using input (e.g editbox) or button. I found a workaround. When you are affected by this bug and don't want to wait until Google put it into an official release, add the files of issue 4338 to your own build of gwt and recompile.

Found bug in PopupPanel in IE6/7/8

2010-05-20 Thread stuckagain
People, I reported a new issue on GWT in IE (6/7/8) where I no longer get keyboard events when closing down a PopupPanel by clicking on a textbox. In case somebody is bored and wants to fix it ? I looked through the code, but I don't quite see where the problem might be coming from.

GWT+Spring

2010-05-20 Thread Naveen
Hi all I am working on an Simple Spring app just an index page which takes the username and password and responds with an success or failure page... If successful I have given a href there in other words an request which takes me to the index page of the GWT app. After combining both of these

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

2010-05-20 Thread Navigateur
Ah yes! Except that I want to be able to get persistent things onto my client side without too much conversion or trouble (i.e. the same objects client-and-server-side using the same language, and the same class definitions). What are my full range of options for this, anyway? And which is the

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

2010-05-20 Thread José González Gómez
Although your question has (almost) nothing to do with GWT... we're working on a GWT + JavaEE application, and evaluated several alternatives regarding this problem. We had two winners, both of them using of course JPA with Hibernate provider: 1. Use Gilead to transform your persistent entities

Re: GWT and Autocomplete.

2010-05-20 Thread José González Gómez
It probably has to do with the fact that in a GWT app you don't usually submit a form, correct me if I'm wrong Regards José On 19 mayo, 20:30, Arinté jamar...@gmail.com wrote: I have a GWT app with a bunch of textboxes. In firefox I would expect that when I type a word in a textbox that I have

Collapsible panel

2010-05-20 Thread Komal
Hi, I am trying to use the collapsible panel I have downloaded the incubator jar (gwt-incubator-20100204-r1747.jar) the styles are not reflecting and the hover bar is appearing although on click of toggle button it is sliding but then I am not able to see it any how or slide it back. I am

Re: Adding CSS style dynamically

2010-05-20 Thread Professor Vagner
try com.google.gwt.dom.client.Style class. ... Style style = yourElement.getStyle(); style.setPosition(Position.ABSOLUTE); ... -- Professor Vagner O PLANETA É O MEU PAÍS, E A CIÊNCIA É A MINHA RELIGIÃO ! INDO AO INFINITO E ALÉM... !! -- You received this message because you are

Performance issue with large object model

2010-05-20 Thread Frederic Conrotte
Hello On our current project we have a fairly large database model mapped thru Hibernate JPA annotations: around 150 entities. Those JPA entities have a lot of @ManyToOne, @OneToMany, @ManyToMany inter relations. On the server side Hibernate lazy loading is active and managed correctly so that

Re: Using JS to access GWT generated JS code

2010-05-20 Thread mmoossen
check also gwt-exporter: http://code.google.com/p/gwtchismes/wiki/Tutorial_ExportingGwtLibrariesToJavascript_en HTH Michael On May 20, 7:17 am, Sky myonceinalifet...@gmail.com wrote: Check out these two sections:http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsJSNI...

Re: Performance issue with large object model

2010-05-20 Thread Sripathi Krishnan
I'd recommend using DTO's. Whether you use Dozer or not is secondary. The motivations for this approach are in this thread - http://groups.google.com/group/google-web-toolkit/msg/f9290388bbf5a5f8. In general, you want to keep your UI Model (i.e. DTO) separate from your Domain Model (hibernate

ListBox control with multiple delete issue...

2010-05-20 Thread Thamizharasu S
I created a multiple select ListBox with the constructor new ListBox(true). I tried to delete all the selected objects from the ListBox. I was not able find any API available now to delete all the selected objects in a single call. Can any one suggest me a solution? Thanks, Thamizharasu S --

Client side dynamic configuration/properties

2010-05-20 Thread Mike Noordermeer
Hi, What is a good way to get dynamic configuration information to the client? I've an application that has some configuration parameters that we need client side, which include: - Configurable dates fetched from a database. - Certain interface heights/widths, preferably configured in some easy

Re: Client side dynamic configuration/properties

2010-05-20 Thread Ramon Buckland
You would simply write out, server side, a Dictionary JS object and then pick that up in the GWT code. See http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/i18n/client/Dictionary.htmlfor more details. Regards On Thu, May 20, 2010 at 1:46 PM, Mike Noordermeer

Re: Client side dynamic configuration/properties

2010-05-20 Thread mariyan nenchev
You need to create some .properties file on the server side. And every client must make request for it. If it is on the client side it could be loaded as TextResource, but on every change the gwt project must be recompiled, which does not make it very dynamic. I recommend you to use server side

How can I clone an object in GWT?

2010-05-20 Thread Mike Jiang
I tried to use History class to manage the handling of the back/forward functioning of the browsers. In order to do that, I need to save the screens with state to a collection, such as a HashMap, hmap. For example, the screen is represented by a Composite object, compObject, which contains a

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

2010-05-20 Thread Navigateur
Thanks José! But don't they still require you to do the hibernate- mapping xml thing? Isn't this cumbersome for complex object structures? Or is there a way of being able to play with your object structure without having to change the hibernate-mapping xml every time (i.e. a default automatic

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

2010-05-20 Thread David Goodenough
You could try OpenJPA, which can now largely be done using annotations rather than xml, or if you are not needing to use SQL DBs you could try one of the object dbs like db4o. David On Thursday 20 May 2010, Navigateur wrote: Thanks José! But don't they still require you to do the hibernate-

Re: SimpleRadioButton getValue() ?

2010-05-20 Thread Jim Douglas
http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/client/ui/SimpleCheckBox.html#isChecked() http://code.google.com/p/google-web-toolkit/issues/detail?id=4018 On May 20, 12:01 am, bch...@gmail.com bch...@gmail.com wrote: Greetings, I have the following snippet :

How to get notified after a widget has been completely rendered?

2010-05-20 Thread googelybear
Hi, I'd like to ask if it is possible to get notified (by adding some kind of event handler) after a widget has been completely rendered? I couldn't find such an event... thanks for your help, Dennis -- You received this message because you are subscribed to the Google Groups Google Web

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

2010-05-20 Thread José González Gómez
JPA/Hibernate supports annotations, so you don't have to fiddle with xml files any more; and JPA/Hibernate has adopted the sane defaults and convention over configuration policy, so unless you want to take control of your mappings (something you should do if you're doing anything serious) most of

Re: How can I clone an object in GWT?

2010-05-20 Thread kozura
In general, trying to store the application state by storing the widget itself is a bad idea, would be very expensive and of course with no deep clone doesn't even work. Better is to extract just the data needed to reconstruct the widget state and store that, then reconstruct the state on history

Can i run hosted mode with Tomcat?

2010-05-20 Thread nacho
Hi, i need to run hosted mode so then i can debbug the client classes. I need to use tomcat because in my project i'm using jax.ws in the server classes and when i try to use hosted mode with jetty its exploits. Can i do that? Can i debbug client classes using tomcat instead jetty? Can someone

Re: How to get notified after a widget has been completely rendered?

2010-05-20 Thread rudolf michael
onLoad or onAttach On Thu, May 20, 2010 at 5:16 PM, googelybear googelyb...@gmail.com wrote: Hi, I'd like to ask if it is possible to get notified (by adding some kind of event handler) after a widget has been completely rendered? I couldn't find such an event... thanks for your help,

Need some help reviewing a book

2010-05-20 Thread Robert Hanson
I haven't posted here in a while, but I need some help. A few of us (Ian Bambury, Chris Ramsdale, Adam Tacy, and me) are working on a book for Manning, and we are a bit short on reviewers. So there is anyone interested in doing a book review, we could use the help. The amount of experience with

Re: Google IO Expense Report App

2010-05-20 Thread Duong BaTien
Yes we are waiting for it and GWT 2.1 Duong BaTien DBGROUPS and BudhNet On Wed, 2010-05-19 at 12:09 -0700, amjibaly wrote: Hi, Does anyone know if the source for the expense report app running on gwt 2.1 that was just demonstrated at google io will be published anywhere? Thanks,

Re: How can I clone an object in GWT?

2010-05-20 Thread Mike Jiang
Understand what you suggested. Thanks. The reason for doing this way is based on the following considerations, 1. The screens are saved as objects completely on the client side. No client-server networking traffic issues during the storing and reloading process. Even in multiple concurrent

Re: Using JS to access GWT generated JS code

2010-05-20 Thread Gabriel Gutierrez
Thanks you all, im going to read about it :) On 20 mayo, 06:36, mmoossen mmoos...@gmail.com wrote: check also gwt-exporter:http://code.google.com/p/gwtchismes/wiki/Tutorial_ExportingGwtLibrari... HTH Michael On May 20, 7:17 am, Sky myonceinalifet...@gmail.com wrote: Check out these

Re: Get file on server with a pattern

2010-05-20 Thread ciosbel
My problem is that getServletContext always returns null. I've also tried to put in a overridden init() but didn't help. ciosbel. On May 19, 9:23 am, Lorris lorris.cou...@gmail.com wrote: Thank you for your answer, This is my solution if another people need it : This is the content of my

Refresh handler

2010-05-20 Thread laurent
Hello, I've a simple question.Exist it a handler(or listener) for a click on the refresh button or F5? Thanks -- 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

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

2010-05-20 Thread Navigateur
Wow, thanks José and David! I'm new to tools so I'm a bit nervous about using them (although I probably shouldn't be) whereas db4o offers straightforward code for persisting objects. Are there any disadvantages to using db4o instead of ORM with tools? db4o seems intuitavely the best option for me

inherints .... for every library in my project?

2010-05-20 Thread nacho
Hi. It is necesary to put in Application.gwt.xml for every one library that i use one line like the following? inherits name=com.company.product.Product/ The thing is that in my console when i run the Ant task to compile i get numerous errors. And i'm trying to use Firefox plugin, but i cant

Re: file upload without browse button

2010-05-20 Thread BimboJones
hi, You should check this thread: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/df03709c2c9ea1db/5b5785f77167e6ec?lnk=gstq=style+of+FileUpload+widget#5b5785f77167e6ec On 19 Maio, 18:28, Chatak 007aditya.b...@gmail.com wrote: hi, i m having some problem with UI feature

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

2010-05-20 Thread José González Gómez
Although you could think they're the perfect solution for persistence in OO languages, object databases haven't taken off, so if you're doing anything serious I would be cautious about using them. I don't know of any big application in production with an OODB. Maybe we're too used to relational

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

2010-05-20 Thread gengstrand
Be advised that Gilead used to be called hibernate4gwt and still supports only hibernate. Check out the latter half of http://www.dynamicalsoftware.com/gwt if you want to learn about some more DTO assemblers used in solving the ORM / GWT-RPC incompatibility problem. On May 20, 3:08 am, José

Re: Need some help reviewing a book

2010-05-20 Thread mikedshaf...@gmail.com
Just sent the email. I'm all in! On May 20, 8:43 am, Robert Hanson iamroberthan...@gmail.com wrote: I haven't posted here in a while, but I need some help. A few of us (Ian Bambury, Chris Ramsdale, Adam Tacy, and me) are working on a book for Manning, and we are a bit short on reviewers.  So

Re: How can I clone an object in GWT?

2010-05-20 Thread kozura
Well of course there's no need to send the state to the server, just capture it and maintain it on the client (of course the user can't copy the link to send to someone else, just use it locally). Just mentioning that if you already do send the data to the server for other reasons, you already

AuthSub vs. history tokens

2010-05-20 Thread David Given
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'm trying to log in to a Google service by using AuthSub. This works by redirecting the user to a Google login page, which then redirects back to my app after login with a cookie in the #... section of the URL. Unfortunately this appears to conflict

Re: Can i run hosted mode with Tomcat?

2010-05-20 Thread randy
Hi, I posted the approximately the same question yesterday but the list administrator never approved my post. I have no idea why, kind of frustrating. Instead I spent 6 hours on this issue. Anyway.. http://www.ducktools.org/2010/05/gwt-eclipse-tomcat-2.html skip to the Run GWT Development Mode

MVP Framework in GWT 2.1 M1 ?

2010-05-20 Thread metrixon
I just downloaded the M1 release of GWT 2.1 and was wondering where I can find more information on the MVP framework that will be part of GWT 2.1. I looked around the Javadocs but did not find anything like it. Is the MVP framework already part of the M1 release ? -- You received this message

resize-able panels like in google wave

2010-05-20 Thread outsource lucas
Hi all, I am still quite new to GWT. If I wish to make resize-able panels (horizontal or vertical resizer bars) like in google wave, what is the best way to implement this in GWT? Is there any example available? Lucas -- You received this message because you are subscribed to the Google

GWT StockWatcher tutorial app with JSON runs on Firefox but not IE

2010-05-20 Thread wla2000
I have completed the GWT JSON tutorial (http://code.google.com/ webtoolkit/doc/latest/tutorial/JSON.html) but ran into trouble. The servlet class coded therein (JsonStockData) works fine in Firefox (v 3.0.18) but in in IE (v 7). The tutorial directed me to run the servlet directly from the

timeseries chart using GWT

2010-05-20 Thread bala
Hi All, I wanted to draw simple timeseries chart using GWT. can u please send me the sample code to do this. thanks -- 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

Problems w/ Switching Off App Engine

2010-05-20 Thread Nick Jost
I'd been using App Engine since that is the default setting. However, I need to turn that off because I need access to local file storage on the server side and I will be moving to a physically secure environment. I should also note that I'm a newly minted GWT user. My steps to the error are:

suggest box - how to override default behavior

2010-05-20 Thread doles
Hello Team, I cant find my initial post on this topic, so this might be a re-post for some of you. I have a SuggestBox in my gwt app that needs to add an additional parameter to the request that is sent to the server for auto- completion. How can i do this? There is no method to add additional

Carbide.ui Theme Edition 2.0 Plug-ins

2010-05-20 Thread James Baker
These plug ins are cool tools for extending the features of Carbide.ui Theme Edition 2.0 to enable the creation of themes for various version of Symbian, S60 platform editions, and devices from Nokia. Before installing the S60 5th Edition plug-in please uninstall the version in Carbide.ui.

GWT 2.0.3 migration issue = java.lang.AssertionError: Not enough methods, expecting 3 saw 2

2010-05-20 Thread lmolinero
Hi, I've run into a problem after migrating form GWT 1.7 to GWT 2.0.3 one of my rpc is failling in 2.0.3 and throwing this: java.lang.AssertionError: Not enough methods, expecting 3 saw 2 at com.google.gwt.user.client.rpc.impl.SerializerBase.check(SerializerBase.java: 165) at

Help integrating GWT with existing Eclipse J2EE Tomcat project

2010-05-20 Thread randy
Using the Eclipse plugin I created a new GWT project. I was able to run it in development mode (via the 'Run As Web Application' command. I was able to run the auto-generated test app successfully. Note that I named the test project testGWT. I have an existing project in Eclipse which uses

Applet integration

2010-05-20 Thread Asier
Hi We are designing an application that needs client-side digital signatures. This is going to be accomplished via a signed java applet. I know I can add the applet code instantiation via HTML applet = new HTML(); applet.setHTML(createHTMLApplet()); RootPanel.get().add(applet); This works

suggest box - how to override default behavior

2010-05-20 Thread doles
Hello Team, I cant find my initial post on this topic, so this might be a re-post for some of you. I have a SuggestBox in my gwt app that needs to add an additional parameter to the request that is sent to the server for auto- completion. How can i do this? There is no method to add additional

Help integrating GWT with existing Eclipse J2EE Tomcat project

2010-05-20 Thread randy
Using the Eclipse plugin I created a new GWT project. I was able to run it in development mode (via the 'Run As Web Application' command. I was able to run the auto-generated test app successfully. Note that I named the test project testGWT. I have an existing project in Eclipse which uses

suggest box - how to override default behavior

2010-05-20 Thread doles
Hello, I sent a message to this group with the same subject as this message... I do not see my message from this morning on the group... How do I reach out to the group if my new message does not make the moderation cut? Please help. Sachin Dole -- You received this message because you are

FileUpload Look-And-Feel

2010-05-20 Thread Nestor
I understand that the FileUpload widget only wraps the input type='file' HTML tag and that I can't control how it looks. The problem I'm having is that the look-and-feel I'm getting is not that of the tag. I'm using IE 8. If I build a HTML form like this: form input type=file /form The widget

suggest box - how to override default behavior

2010-05-20 Thread doles
Hello All, I am learning GWT and loving it too. In my app, I have a suggest box that needs to query the server for its suggestions. I have it working great when the query to be sent to the server is the text in the input box alone... however, i dont see any way to tack on an additional parameter

RequestBuilder.POST to PHP works in IE, FireFox, but not Chrome Response Status = 0

2010-05-20 Thread Mike Apolis
When sending the code below, everything works great in FF, IE, but the response that comes back in chrome has a status code of 0, and contains no data. At a minimum my php script would response back FALSE. Code: String requestData = URL.encode(clientUsername=+authentication.getUsername()

Re: The new 2.1M1 release appears to have a few challenges

2010-05-20 Thread Lex Spoon
The new data-flow optimizer is choking on the code. Some sort of uncommon syntax in the code is breaking one of its assertions. Let me poke around a little to see what's up. Filed as Issue 4957: http://code.google.com/p/google-web-toolkit/issues/detail?id=4957 Lex -- You received this

Help with DatePicker

2010-05-20 Thread Pedro Perez
Hello everyone, I am using GWT 2.0 and having trouble with the DatePicker. There is a lot of conflicting information on the web about the GWT DatePicker object, and I suspect most of it was written for GWT 1.6. I am trying to implement a simple DatePicker (I was thinking something along the

Re: Security restrictions may not be entirely emulated

2010-05-20 Thread Nick Jost
Just posted a similar question (when it comes through via moderation). I should note that I'm running on Fedora. My partner is running on Windows and shutting off the GAE works just fine. Wonder if that provides a clue... -- You received this message because you are subscribed to the Google

Re: MVP Framework in GWT 2.1 M1 ?

2010-05-20 Thread Frederic Conrotte
I've asked myself the same question: New MVP framework ? Where is the doc? I guess they are talking about this one: http://code.google.com/intl/fr/webtoolkit/articles/mvp-architecture.html On 20 mai, 10:44, metrixon metri...@gmail.com wrote: I just downloaded the M1 release of GWT 2.1 and was

Re: Applet integration

2010-05-20 Thread mbracken
For the GWT-to-Applet communication, JSNI is probably all you need. For the other side of the conversation you could do it with JSNI, but an easier way may be to look at the gwt-exporter project and build an 'exported' API that the applet can call in native JS.

Re: MVP Framework in GWT 2.1 M1 ?

2010-05-20 Thread Paul Stockley
Its actually quite a bit different than what they have talked about in the past. From a quick look I had, it appears to incorporate a bunch of scafolding code generation, dynamic binding etc.You can take a look at the bikeshed project in svn. I think it is still somewhat a work in progress. On

Re: Get file on server with a pattern

2010-05-20 Thread ciosbel
Nevermind. I called the getServletContext() inside the constructor rather that inside an rpc method. ciosbel. -- 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

Re: MVP Framework in GWT 2.1 M1 ?

2010-05-20 Thread metrixon
I think, the whole MVP with GWT thing is actually inspired by the talk given by Ray Ryan on last year's Google IO (see http://www.youtube.com/watch?v=PDuhR18-EdM). Currently, there are implementations available that do provide an MVP infrastructure and implement other patterns as well: -

Re: MVP Framework in GWT 2.1 M1 ?

2010-05-20 Thread Paul Stockley
Actually I don't think it has much relation to that. I think it originated from this: http://code.google.com/p/google-web-toolkit/wiki/ValueStoreAndRequestFactory On May 20, 2:03 pm, metrixon metri...@gmail.com wrote: I think, the whole MVP with GWT thing is actually inspired by the talk given

Re: timeseries chart using GWT

2010-05-20 Thread Sean
Here, check this out. This is Google's Visualization and Chart API for GWT: http://code.google.com/p/gwt-google-apis/wiki/VisualizationGettingStarted On May 20, 3:23 am, bala bala.thurap...@gmail.com wrote: Hi All, I wanted to draw simple timeseries chart using GWT. can u please send me the

Re: resize-able panels like in google wave

2010-05-20 Thread Sean
I haven't used Google Wave, but it sounds like you're talking about HorizontalSplitPanel which is built into GWT. There's also a VerticalSplitPanel. On May 20, 7:38 am, outsource lucas outsourcelu...@gmail.com wrote: Hi all, I am still quite new to GWT. If I wish to make resize-able

Re: resize-able panels like in google wave

2010-05-20 Thread kozura
Or the new SplitLayoutPanel which does arbitrary resizable panels. On May 20, 1:00 pm, Sean slough...@gmail.com wrote: I haven't used Google Wave, but it sounds like you're talking about HorizontalSplitPanel which is built into GWT. There's also a VerticalSplitPanel. On May 20, 7:38 am,

Re: Problems w/ Switching Off App Engine

2010-05-20 Thread Sripathi Krishnan
Remove all google app engine jars from the project classpath and try again. --Sri On 20 May 2010 22:55, Nick Jost lordkak...@gmail.com wrote: I'd been using App Engine since that is the default setting. However, I need to turn that off because I need access to local file storage on the

Re: RequestBuilder.POST to PHP works in IE, FireFox, but not Chrome Response Status = 0

2010-05-20 Thread Sripathi Krishnan
Are you posting to a different port on the same host? AFAIK, IE allows you to post to the same port, but other browsers consider it a violation of same origin policy. --Sri On 20 May 2010 20:32, Mike Apolis michaelgb@gmail.com wrote: When sending the code below, everything works great in

Re: Client side dynamic configuration/properties

2010-05-20 Thread mmoossen
What's about rpc-prefetching? http://development.lombardi.com/?p=1329 HTH Michael On May 20, 3:16 pm, mariyan nenchev nenchev.mari...@gmail.com wrote: You need to create some .properties file on the server side. And every client must make request for it. If it is on the client side it could

Re: MVP Framework in GWT 2.1 M1 ?

2010-05-20 Thread metrixon
Thanks for the link Paul - I'm afraid my answer overlapped with your first reply. I think we talk about two different features in 2.1: first, there is the data binding stuff that was shown in great length during the keynote and I agree that it seems to be originating form the link you posted. The

Compiling classes that refer to uncompilable classes

2010-05-20 Thread Raziel
Hi, currently I create modules in order to access server-side classes in my GWT client code. Until now all these classes have not referred (directly or indirectly) to classes outside of the GWT JRE emulation. However, now I need to be able to compile a bean with a reference to

LayoutPanel

2010-05-20 Thread Blessed Geek
I cannot get contents of LayoutPanel to display after placing it inside a verticalpanel which in turn is placed inside a TabLayoutPanel, all thro UIBinder. Chrome would display a little bit but contents of LayoutPanel is all blank for FF. In standards mode. Any one else have trouble with

Is switching to GWT 2.1 safe?

2010-05-20 Thread Raffo
I'm currently working on a project with GWT and I want to know if it is safe to switch now to GWT 2.1... I don't want to have strange bugs or other problems that will slow down the development... thank you. -- You received this message because you are subscribed to the Google Groups Google Web

Re: LayoutPanel

2010-05-20 Thread kozura
Be sure to read fully through http://code.google.com/webtoolkit/doc/latest/DevGuideUiPanels.html for various caveats and restrictions. In particular, if a layout panel is not directly parented by a widget that implements ProvidesResize, you must explicitly set its size (see Using a LayoutPanel

Re: Is switching to GWT 2.1 safe?

2010-05-20 Thread Jeff Chimene
On 05/20/2010 02:35 PM, Raffo wrote: I'm currently working on a project with GWT and I want to know if it is safe to switch now to GWT 2.1... I don't want to have strange bugs or other problems that will slow down the development... thank you. If you are in a time crunch, there is absolutely

Re: MVP Framework in GWT 2.1 M1 ?

2010-05-20 Thread Paul Stockley
There is the data bound cell based list and tree widgets they talked about. These are really independent of any mvp framework. However, there is also server/client side data binding support that is part of their new business application framework. The expenses application is very different from

Re: Is switching to GWT 2.1 safe?

2010-05-20 Thread Paul Stockley
I have a fatal compiler issue when trying to compile my application. They are working on tracking it down. Dev mode works OK. The only reason I am on it is because I want to try out the new cell views. I would hold off for a while if you can. On May 20, 5:55 pm, Jeff Chimene jchim...@gmail.com

Re: Problems w/ Switching Off App Engine

2010-05-20 Thread Nick Jost
Not to be crass, but doesn't that defeat the purpose of having a setting if I have to do that manually? That _sounds_ equivalent to don't use the gas pedal even though its installed, adjust the throttle with a wrench. Is there a way of getting the gas pedal to work? -- You received this

Re: Problems w/ Switching Off App Engine

2010-05-20 Thread Nick Jost
Doesn't that also make switching back and forth nearly impossible without introducing errors? -- 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

Re: Problems w/ Switching Off App Engine

2010-05-20 Thread kozura
Not a thing you'd be switching back and forth on frequently - either you're using GAE as your backend or not. In any case having the jars there shouldn't cause any problem, more likely something wasn't recompiled when switched - maybe try a clean build after turning off GAE. On May 20, 4:51 pm,

Re: Problems w/ Switching Off App Engine

2010-05-20 Thread lordkakita
Clean-Compile-Run Debug Causes the exact same error. Another compatriot just chuckled at me for using GAE in the first place rather than disabling it right away. And yes, switching, to experiment with the concept, shouldn't be nightmarish (he responded that I should recreate the project and

Re: Is switching to GWT 2.1 safe?

2010-05-20 Thread Nick Jost
Is there actual documentation out on the new 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: Problems w/ Switching Off App Engine

2010-05-20 Thread Nick Jost
Also which JARs should I remove if I follow that path. -- 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

Re: Is switching to GWT 2.1 safe?

2010-05-20 Thread Paul Stockley
There are some javadoc comments on the new classes. There is also a sample showing how to use the widgets that is checked in under svn here: http://google-web-toolkit.googlecode.com/svn/branches/2.1/bikeshed/src/com/google/gwt/sample/bikeshed/cookbook/ On May 20, 7:59 pm, Nick Jost

Re: RequestBuilder.POST to PHP works in IE, FireFox, but not Chrome Response Status = 0

2010-05-20 Thread Mike Apolis
I'm not explicitly asking it to post to any specific port to my knowledge. My url is http://www.mydomain.com/testing/login.php. The site.html file and accompanying folder are in the same directory testing as the php file. I've seen alot of things about SOP, but I thought if they were on the same

Re: MVP Framework in GWT 2.1 M1 ?

2010-05-20 Thread licht...@gmail.com
The expenses application code isn't that easy to follow, haven't deciphered it yet. Even the author prefaces the nature of the code... * This app is a mess right now, but it will become the showcase example of a * custom app written to RequestFactory * UI shell for expenses sample app. A

Data Presentation Widgets Help

2010-05-20 Thread licht...@gmail.com
Anyone know where to find the sources, examples, docs to the new Data Presentation 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-tool...@googlegroups.com. To unsubscribe from this

Table Row Gaps

2010-05-20 Thread Craigo
When creating a Grid, FlexTable, VerticalPanel, or any other type of table, I couldn't get rid of the gaps in the rows. The gaps would only appear in Chrome and FF, but not in IE6. They were very small gaps (about 3 pixels high). Nothing seemed to work, setCellPadding, setCellSpacing, css with

[gwt-contrib] Re: 1.3.1 gwt-maven-plugin in 2.1.0 M1 ??

2010-05-20 Thread nicolas.deloof
Not the best way to help Maven users :-/ install-file goal is designed to setup a local repository, not to create a public shared one. Please consider writing pom.xml files with complete metadatas. NB: providing maven metadata and artifact deployment does NOT require the project itself to be

[gwt-contrib] [google-web-toolkit] r8200 committed - Fixes a memory leak on IE with the cross-site fragment loading strateg...

2010-05-20 Thread codesite-noreply
Revision: 8200 Author: sp...@google.com Date: Thu May 20 05:21:35 2010 Log: Fixes a memory leak on IE with the cross-site fragment loading strategy. Now the callbacks on script tags are removed when they are invoked. Review at http://gwt-code-reviews.appspot.com/544801 Review by:

[gwt-contrib] Re: 1.3.1 gwt-maven-plugin in 2.1.0 M1 ??

2010-05-20 Thread Nathan Wells
I understand that adding the maven artifact to the svn repo might not have been to help users. It would be nice to know what the GWTers are thinking about this... Is Maven integration on a roadmap? is it just being proposed/tested? It's okay if there's no promises, and if we shouldn't rely on

[gwt-contrib] GWT support for java.math

2010-05-20 Thread Swets
I am looking for gwt support for java.math. I found gwt-math-2.1.jar, however this jar does not support few of the methods which I am using in my project viz:- 1. java.math.MathContext 2. remainder(BigDecimal arg0,MathContext arg1) 3. intValueExact() 4. java.math.RoundingMode Any suggestions on

[gwt-contrib] Has anyone heard what is happening with Scala support using Jribble?

2010-05-20 Thread oatkinson
I heard some rumblings about creating a new vm language that was basically a puddle of java called jribble. It was supposed to allows support for making GWT work on scala code. I have not seen much more about it. Has anyone heard anything? I would really love to be able to write GWT client

Re: [gwt-contrib] GWT support for java.math

2010-05-20 Thread John Tamplin
On Mon, May 17, 2010 at 5:06 AM, Swets manjrekar.shw...@gmail.com wrote: I am looking for gwt support for java.math. I found gwt-math-2.1.jar, however this jar does not support few of the methods which I am using in my project viz:- 1. java.math.MathContext 2. remainder(BigDecimal

Re: [gwt-contrib] Re: 1.3.1 gwt-maven-plugin in 2.1.0 M1 ??

2010-05-20 Thread Chris Ramsdale
To add a bit of color here, we patched the existing plugin so that gwt:run would work with Roo generated code. We decided to host it in our repo simply because we were short on time leading up to I/O. With that (almost) behind us, our plan is to work with the codehaus-mojo team/project to formerly

[gwt-contrib] JsParserException better error reporting (issue546801)

2010-05-20 Thread scottb
Reviewers: Lex, bobv, Description: Better error reporting on JSNI / JS syntax errors. Please review this at http://gwt-code-reviews.appspot.com/546801/show Affected files: M dev/core/src/com/google/gwt/core/ext/linker/impl/StandardLinkerContext.java M

Re: [gwt-contrib] 1.3.1 gwt-maven-plugin in 2.1.0 M1 ??

2010-05-20 Thread Ray Cromwell
Nicolas, Sorry I didn't give you a heads up, I had to patch some things at the last minute for Google I/O Keynote, and I did not think there was sufficient time to turn around a patch and get it committed, so temporarily, there's a forked maven plugin (the version # 1.3.1.google should give it