Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-29 Thread alex.d
panel.setCellVerticalAlignment(textbox, HasVerticalAlignment.ALIGN_BOTTOM); On 27 Jun., 21:59, max3000 maxime.lar...@gmail.com wrote: Hi, I'm trying to align an image and a textbox in a HorizontalPanel using only CSS. I want the textbox to be aligned at the bottom. Doing the following

Graph Visualization

2009-06-29 Thread Alexander Kosenkov
Hello, I'm going to create GWT wrapper for JavaScript InfoVis Toolkit (http:// thejit.org/demos/). It looks really promissing and nice. Please, if someone is willing to participate, you are welcome: http://code.google.com/p/gwt-graph/ --~--~-~--~~~---~--~~ You

Re: How to get HTTP authentication working in hosted mode using GWT 1.6

2009-06-29 Thread cschoett
Hi Roman, I had the same issue after upgrading to GWT 1.6 and after a lot of trial and error I found a solution. You must add a jetty-web.xml to your configuration. Put it in the beside your web.xml file. My confifiguration looks like the following: ?xml version=1.0? !DOCTYPE Configure PUBLIC

How to prevent hosted mode web server from sending charset in the HTTP-Header?

2009-06-29 Thread alex.d
How to prevent hosted mode web server from sending charset in the HTTP- Header? Setting charset in the HTML META Header should actually be enough. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: gwt and jdbc

2009-06-29 Thread Sowjanya Yerramneni
Hi, I am using spring and hibernate in my gwt application. I configured my datasource in the application-context.xml. bean id=*dataSource * class=*org.springframework.jdbc.datasource.DriverManagerDataSource* property name=*driverClassName* valuejdbc.odbc.driver.OracleDriver/value /property

Re: Eclipse plugin invalid errors in JSNI methods

2009-06-29 Thread Clive Cox
public static void setTags(String tags) On Jun 26, 6:23 pm, Miguel Méndez mmen...@google.com wrote: What does the java declaration for the setTags method look like? On Fri, Jun 26, 2009 at 12:36 PM, Clive Cox clive@rummble.com wrote: In Eclipse 3.4.1 with latest Google plugin I

Re: gwt and jdbc

2009-06-29 Thread Keerthan MUTHURASA
Hi Sowjanya, 2009/6/29 Sowjanya Yerramneni y.sowja...@gmail.com Hi, I am using spring and hibernate in my gwt application. I configured my datasource in the application-context.xml. bean id=*dataSource* class=*org.springframework.jdbc.datasource.DriverManagerDataSource* property

Re: gwt and jdbc

2009-06-29 Thread Sowjanya Yerramneni
i have it in my web-inf/lib. Where else should i place it? please be lil clear. Thanks for your quick response. On Mon, Jun 29, 2009 at 2:24 PM, Keerthan MUTHURASA muthurasa.keert...@gmail.com wrote: Hi Sowjanya, 2009/6/29 Sowjanya Yerramneni y.sowja...@gmail.com Hi, I am using spring

Re: gwt and jdbc

2009-06-29 Thread Sowjanya Yerramneni
I tried to run the same on tomcat. I have it on the tomcat's common/lib folder... Still it did not work on tomcat too. On Mon, Jun 29, 2009 at 2:53 PM, Sowjanya Yerramneni y.sowja...@gmail.comwrote: i have it in my web-inf/lib. Where else should i place it? please be lil clear. Thanks for

Re: gwt and jdbc

2009-06-29 Thread Keerthan MUTHURASA
Here the steps I followed to solve the previous mysql connection related error: 1- Add MySQL Connector to Eclipse and Tomcat Classpath 2- Created the class that connect to mysql (AuthServiceImpl in the previous case) 3- Configure Interfaces on the client side (AuthService and AuthServiceAsync)

Re: same-origin security restriction

2009-06-29 Thread Thomas Broyer
On 28 juin, 11:58, sai surya kiran master...@gmail.com wrote: Hi, What port of service do you suggest to use ? I am a complete newbie and please suggest on how to make a proxy. currently authentication server runs on 6828. and GWT runs on , so please suggest the change here. You can

Re: (re-posting) GWT 1.6 and -whitelist

2009-06-29 Thread Thomas Broyer
On 27 juin, 15:46, babakm bmo...@gmail.com wrote: I have a GWT 1.6 app that uses Ajax requests to talk to a server. I need to whitelist the URL for my ajax call so it would work in hosted mode. I have tried to pass -whitelist .* (anything) and also many other combinations in Eclipse and

Re: TextBox allow only numbers (gwt 1.6.4)

2009-06-29 Thread Dominik Erbsland
thanks for the help so far. I am aware that there is a new handler system - I just can't figure out a way how to make a TextBox field numbers only. I tried with a KeyUpHandler and a ValueChangeHandler but could not find suitable methods to check the input for its validity. any hints? On Jun 26,

Re: Problem specifying Grid's cell size

2009-06-29 Thread Ian Bambury
You can apply border-spacing to a table (e.g. your grid) which adjusts the spacing between cells. To get rid of it completely, you need to set border-collapse:collapse to the *table* (not the cells - i.e.not the td elements) I think you can get away with setting font-size on the table/grid and to

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-29 Thread Ian Bambury
vertical-align: bottom !important; ? Ian http://examples.roughian.com 2009/6/29 alex.d alex.dukhov...@googlemail.com panel.setCellVerticalAlignment(textbox, HasVerticalAlignment.ALIGN_BOTTOM); On 27 Jun., 21:59, max3000 maxime.lar...@gmail.com wrote: Hi, I'm trying to align an

Re: How to know when a Widget is fully loaded....

2009-06-29 Thread Sean
Hi Adam, Thanks for all the great ideas. I also think it has to do with images not being fully loaded. This has been my biggest hurdle with GWT. I tend to use a lot of images, and rely a lot on image sizes, but they aren't very reliable because of the fact that the image could be initialized,

Re: Eclipse plugin invalid errors in JSNI methods

2009-06-29 Thread Miguel Méndez
Unfortunately, I cannot reproduce the problem. However, could you create an issue in the GWT issue trackerhttp://code.google.com/p/google-web-toolkit/issues/listand attach sample code that reproduces the problem? On Mon, Jun 29, 2009 at 4:41 AM, Clive Cox clive@rummble.com wrote: public

Re: WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5.

2009-06-29 Thread Miguel Méndez
What was going on when the error was reported? How was it reported? Was there a stack trace? On Sat, Jun 27, 2009 at 3:03 PM, Farinha fari...@gmail.com wrote: The subject has it all. Eclipse 3.4.2 GWT Eclipse Plugin Windows 7 Thanks in advance for the help. -- Miguel

Re: How to know when a Widget is fully loaded....

2009-06-29 Thread Sean
I'm also thinking about adding the size of the image to the DB. So I can at least set up my panel sizes correctly, and just let the pictures fill it in as they download. On Jun 29, 8:14 am, Sean slough...@gmail.com wrote: Hi Adam, Thanks for all the great ideas. I also think it has to do with

Re: Default Sample Project (GreetingService) doesn't display widgets in hosted mode

2009-06-29 Thread Miguel Méndez
What OS are you running on? Also, what exact version of eclipse are you using? On Fri, Jun 26, 2009 at 6:35 PM, mcjames01 mcjame...@msn.com wrote: I set the log level to ALL and see that I'm getting a couple exceptions. The first one is: org.mortbay.jetty.HttpException: null at

Re: Newbie question re returning persisted objects via RPC to client

2009-06-29 Thread Will
I took a slightly different approach to option 1. I created a interfaces that describe the Animal and made both the DTO and GWT implement the interfaces. This lets me control the dependencies and ended up cutting down on the amount data I needed to send to the browser. I'm actually referring

Re: WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5.

2009-06-29 Thread Chad
Miguel, I get the same error. It's generated from Eclipse and shows in the Console of Eclipse. It appears every time I run or compile an application. I don't think it's a GWT issue. I searched around when I first saw and IIRC, it's an issue within Eclipse itself. Trying to write to the wrong

Re: WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5.

2009-06-29 Thread Miguel Méndez
Thanks Chad. I must admit that I have never encountered that one. However, I did find the following bug in Java's bug tracker: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4479451. On Mon, Jun 29, 2009 at 9:58 AM, Chad chad...@gmail.com wrote: Miguel, I get the same error. It's

Invoke oracle from suggestbox on key

2009-06-29 Thread CMB
I would like to add a key handler to the suggestbox so that on a keydown it would ask the oracle for suggestion from the server, no matter if there is text or not in the input box. Is it possible, as I can't find a way to do this (adding the handler is easy, it's the requestSuggestions bit that I

Re: Newbie question re returning persisted objects via RPC to client

2009-06-29 Thread Alejandro D. Garin
Hi, I wrote an example using gwt with java app engine. http://puntosoft2k.appspot.com/gwt_gae_example.html The example shows how to create, update, delete and retrieve objects from app engine datastore to GWT client using RPC. The example use DTO approach. Source code is available. Hope that

Very large GWT app

2009-06-29 Thread Paul van Hoven
I developped a gwt app over the last 3 months. But i found out that the compiled js file is too large. In total it has a size of 411KB. Therefore i thought it would be a good idea of splitting up my application and create some modules. My goal is to split the whole application up into parts of

Re: Very large GWT app

2009-06-29 Thread Thomas Broyer
On 29 juin, 17:19, Paul van Hoven paul.van.ho...@googlemail.com wrote: I developped a gwt app over the last 3 months. But i found out that the compiled js file is too large. In total it has a size of 411KB. Therefore i thought it would be a good idea of splitting up my application and

ImageBundle createImage does not trigger events as opposed to Image

2009-06-29 Thread abby
Hi, I just discovered an interesting issue. In one of my views i have a bunch of widgets like textbox etc and a Proceed button (which is basically an image). If i create Proceed using new Image(url) all events are fired for text boxes etc, but if use ImageBundle.createImage, and someone

How i execute cmd.exe via GWT

2009-06-29 Thread Wasin Raktham
How can i execute cmd.exe using GWT? It access denied when I try to run a local file. How i fix it? java.policy? or another help me please. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

i18n: UTF-8 and latin1

2009-06-29 Thread matienzar
Hello, It's it possible to use my .properties that are in latin1 with GWT. I know that GWT only admits UTF-8 charset. Lot of thanks, Marcial --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: How i execute cmd.exe via GWT

2009-06-29 Thread Damien Picard
Hi, For security issue, you couldn't launch application from a browser. If you want to do that, you have to pass through an ActiveX control (IE) or a chrome app (FF) for example, but there is no portable solution, and it is probably a bad idea to permit it... Maybe the best way to dot that is to

Re: generics, events, dependency injection

2009-06-29 Thread Ricardo Rocha
Hi again. On Jun 24, 3:16 pm, Thomas Broyer t.bro...@gmail.com wrote: On 24 juin, 12:01, rocha.po...@gmail.com rocha.po...@gmail.com wrote: Hi all. I've been trying to get a nice setup of the best practices presented at google i/o. I have something working, but a few questions.

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-29 Thread Joseph Arceneaux
This placement within a panel is very confusing. I am trying to stack some labels contiguously in a vertical panel, starting at the top. But the panel places the first label at the very top, and then the second label in the very middle. I've tried changing the CSS style, and also various

Accessing to Google Insights Information

2009-06-29 Thread Behrang
Hi, Does anyone know if it is possible to access Google Insights through an AP? ( or do you know what is the best mailing list to post this question?) I look forward to hearing from you. Cheers, Behrang --~--~-~--~~~---~--~~ You received this message because

Re: Graph Visualization

2009-06-29 Thread Alexander Kosenkov
I'm pleased to say that one more delevoper has joined this project. --~--~-~--~~~---~--~~ 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-Toolkit@googlegroups.com

Re: Convert a Java Swing Application

2009-06-29 Thread DaBlick
I would suggest that you consider using the Ext-GWT component library instead of the native GWT components. Ext-GWT (also known as GXT) provide a far more Swing-like approach (MVC, etc.) to GUI's than GWT components. I definitely believe it's a shorter leap from Swing to Ext-GWT than to GWT.

Re: WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5.

2009-06-29 Thread Farinha
It seems that the problem has disappeared. Not sure what I did, but it might have something to do with the fact that I've been messing around trying to downgrade to update 13 in and attempt to get the Hosted Mode to work on Eclipse. Or it can be something else completely different... On Jun 29,

Re: Default Sample Project (GreetingService) doesn't display widgets in hosted mode

2009-06-29 Thread mcjames01
Thanks for looking at this Miquel, but my boss found this post: http://www.mail-archive.com/google-web-toolkit@googlegroups.com/msg16364.html and sure enough, clearing my cookies in IE did the trick. On Jun 29, 7:52 am, Miguel Méndez mmen...@google.com wrote: What OS are you running on?  Also,

Re: Very large GWT app

2009-06-29 Thread Paul van Hoven
It is definetly the size of one single XYZ.cache.hml file. If i cannot split up this cache file even when using separate modules this means that the user has to download initially 412K? Because then the user had to wait quite long before he could see anything and in turn had to download parts of

Re: GWT1.6 Eclipse Version: 3.4.2 [Debugging Issue]

2009-06-29 Thread Farinha
Well, I just spent a good couple of hours just to completely remove Java from this machine and installing a clean new version (why does everything related to Java has to be so hard to do?). So the directory has been removed, update 13 has been re-installed and I made sure that inside Eclipse: -

Re: TextBox allow only numbers (gwt 1.6.4)

2009-06-29 Thread nobody is perfect
Just implement KeyPressHandleron the onKeyPress method check the char code and cancel the key when appropriate. See the example at the TextBox api docs http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/ui/TextBox.html Regards, Pablo On Mon, Jun 29, 2009 at

Re: GEP rebuild deletes war/WEB-INF/classes

2009-06-29 Thread Thomas Broyer
On 29 juin, 20:51, Jeremy Cohen jeremy.h.co...@gmail.com wrote: I'm using GEP Eclipse 3.4.0 with GEP 1.0.1v200905131143 I created a GWT project using GEP. The default output folder is project/war/WEB-INF/classes. I need to have some properties files in my classpath and I usually place them

Re: TextBox allow only numbers (gwt 1.6.4)

2009-06-29 Thread Thomas Broyer
On 29 juin, 21:07, nobody is perfect spam4m...@gmail.com wrote: Just implement KeyPressHandleron the onKeyPress method check the char code and cancel the key when appropriate. See the example at the TextBox api docshttp://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/g...

Re: Very large GWT app

2009-06-29 Thread Thomas Broyer
On 29 juin, 20:13, Paul van Hoven paul.van.ho...@googlemail.com wrote: It is definetly the size of one single XYZ.cache.hml file. If i cannot split up this cache file even when using separate modules this means that the user has to download initially 412K? Because then the user had to wait

Re: Default Sample Project (GreetingService) doesn't display widgets in hosted mode

2009-06-29 Thread Miguel Méndez
Glad to know that you were able to find a work around. On Mon, Jun 29, 2009 at 2:09 PM, mcjames01 mcjame...@msn.com wrote: Thanks for looking at this Miquel, but my boss found this post: http://www.mail-archive.com/google-web-toolkit@googlegroups.com/msg16364.html and sure enough, clearing

Re: GEP rebuild deletes war/WEB-INF/classes

2009-06-29 Thread Jeremy Cohen
Thanks for the tip Thomas, I'll check it out. The downside of this is that I now need to update my ant build file that was created using webAppCreator to manually copy these resources prior to running ant hosted or ant war. I agree that while the GWT 1.6 project structure is a huge improvement,

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-29 Thread Ian Bambury
Maybe also ask yourself if you really need a table (VP) when a div (FlowPanel) might do. Ian http://examples.roughian.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-29 Thread max3000
A flow panel doesn't work insofar as the textbox is not horizontally aligned with the image. There might be a way to make it work though, I'm a newbie to GWT and css. Thanks, Max On Jun 29, 3:31 pm, Ian Bambury ianbamb...@gmail.com wrote: Maybe also ask yourself if you really need a table (VP)

Re: onModuleLoad is sometimes not called (Internet Explorer)

2009-06-29 Thread Joel Friedman
In case this helps others, for us it turned out to be a problem with compression and IE6. We turned off compression for IE6 user-agents and the problem went away. On May 21, 5:55 pm, Joel Friedman joel.fried...@gmail.com wrote: I am also experiencing a very similar problem, though with a few

Re: TextBox allow only numbers (gwt 1.6.4)

2009-06-29 Thread Eric
On Jun 29, 3:20 pm, Thomas Broyer t.bro...@gmail.com wrote: Note that ((TextBox) event.getSource()).cancelKey(); is exactly equivalent to event.preventDefault(); ..and I believe the // TODO(ECC) must be tested. really means that it *needs* to be tested (i.e. I'm almost sure that it isn't

Re: Relative Position on a Page

2009-06-29 Thread Steven Day
I figured it out by using Document.get().getScrollTop(). I have a lot of API to learn. On Jun 29, 3:59 pm, Steven Day steven@gmail.com wrote: Hello all, I am relatively new to the gwt programming and I love it, however I am having a small problem in regards to getting the relative

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-29 Thread max3000
Doesn't work. On Jun 29, 8:09 am, Ian Bambury ianbamb...@gmail.com wrote: vertical-align: bottom !important; ? Ian http://examples.roughian.com 2009/6/29 alex.d alex.dukhov...@googlemail.com panel.setCellVerticalAlignment(textbox, HasVerticalAlignment.ALIGN_BOTTOM); On 27 Jun.,

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-06-29 Thread Daniel Jue
Does anyone have a working MVP/Eventbus sample of something simple like the PhoneEditor? I don't think I'm doing it right. The code from the IO presentation leaves out enough details so that I'm not sure what to do. For instance, in my Presenter.class, I have something like this: public class

GWT components too big in IE

2009-06-29 Thread max3000
Hi, GWT seems to render components too big in IE. This can be seen simply by navigating to the GWT showcase. Make sure the zoom is reset (100%). It is obvious this is a GWT thing as evidenced by looking at Google docs. The components in docs are fine. Is this a bug? (a feature??) Thanks, Max

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-06-29 Thread mabogie
check this out: http://www.webspin.be/ I left out the model (Phone class here) and the command pattern, since I'm not using it yet. For your comment on the casting: I'm having trouble with that too. When I want to attach the widgets to the root panel or whatever other panel, I can't do

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-06-29 Thread Thomas Broyer
On 29 juin, 23:13, Daniel Jue teamp...@gmail.com wrote: Does anyone have a working MVP/Eventbus sample of something simple like the PhoneEditor? I don't think I'm doing it right.  The code from the IO presentation leaves out enough details so that I'm not sure what to do. For instance, in

Re: GEP rebuild deletes war/WEB-INF/classes

2009-06-29 Thread Thomas Broyer
On 29 juin, 21:28, Jeremy Cohen jeremy.h.co...@gmail.com wrote: Thanks for the tip Thomas, I'll check it out. The downside of this is that I now need to update my ant build file that was created using webAppCreator to manually copy these resources prior to running ant hosted or ant war.

Re: GWT1.6 Eclipse Version: 3.4.2 [Debugging Issue]

2009-06-29 Thread Farinha
An update: Unistalled everything that I could identify as being Java. Deleted any leftover files. Deleted Eclipse. Reinstalled first Java (update 13), added the bin\ folder to the PATH and installed a clean copy of Eclipse Ganymede. The result: it's all the same as before. I'm clueless as to

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-29 Thread Ian Bambury
It does if you apply it to the right element. Or at least, I can get it to work in my test app, though I haven't tried it in browsers generally. But, more important, what is the effect you are trying to get? Is the image smaller than the text box or the other way around? Do you want the bottom of

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-29 Thread max3000
On Jun 29, 7:37 pm, Ian Bambury ianbamb...@gmail.com wrote: Do you want the bottom of the image and the bottom of the textbox to be in line (this is what I am understanding from what you have said). Something like that. In effect, what I want is a lot like the search line in google docs: logo

Horizontal tabs in a TabPanel

2009-06-29 Thread Bruce Choi
Instead of having the tabs in a tab panel alight to the top left corner, is there anyway to align them to the right? (not right hand corner but to the right-hand side) Kinda like what they're doing right now with this discussion group...? --~--~-~--~~~---~--~~

trying to track GWT timers

2009-06-29 Thread davidroe
I have a situation where I need to ensure that _every_ timer launched is closed upon exit, meaning I track each timer I create and ensure that I cancel it when the application is about to close. is anyone aware of any timers that GWT launches that are, perhaps, allowed to self disintegrate,

[gwt-contrib] Re: Allow detached JDO objects to be transferred via RPC

2009-06-29 Thread bruno
Hi all, I did similar development with Gilead adapter for GAE (available on Gilead site : http://gilead.sourceforge.net), so I guess it would be a good idea to share our knwoledge about it. I modified nearly the same files, but I more generic concepts (ISerializationFilter and

[gwt-contrib] Re: RPC extension points

2009-06-29 Thread bruno
Hi Lex, The main problem comes from enhancement added fields, so user can add @GwtTransient annotation on it. Yes, enhancement is evil, but we have to do with them... Regards Bruno On 19 juin, 17:09, Lex Spoon sp...@google.com wrote: On Mon, Jun 15, 2009 at 11:59 AM,

[gwt-contrib] Re: DockLayoutPanel

2009-06-29 Thread Joel Webber
That's fairly closely related to the approach I'm taking. It is worth noting, however, that this totally fails on IE6, because it won't handle the kinds of implicit constraints created by, e.g., { left:0; right:0; }. Just to make matters more difficult, it also can't handle { right:0; } properly

[gwt-contrib] Re: SoyLite

2009-06-29 Thread Katharina Probst
I think this is a great idea, especially because it can be offered side by side with the existing SOYC (that includes partial blame assignment). I agree with you, Lex, that explaining partial blame assignment has been a challenge. What I am still trying to understand is exactly how blame is

[gwt-contrib] Re: Allow detached JDO objects to be transferred via RPC

2009-06-29 Thread bobv
Please extract the expando work to the gwt.core.client package and add test cases for it, as it's a generally-useful facility to offer. Needs tests of the JDO testcases. @Cromwellian, The expando field just reserves a bit of the Object-field namespace since it's lazily initialized.

[gwt-contrib] Re: Add Impl.getNameOf() to expose JNameOf nodes to Java code

2009-06-29 Thread bobv
Ping http://gwt-code-reviews.appspot.com/46802 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Add ArtificialRescue annotation to compiler

2009-06-29 Thread bobv
Ping http://gwt-code-reviews.appspot.com/46801 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Comment on UsingOOPHM in google-web-toolkit

2009-06-29 Thread codesite-noreply
Comment by kojot...@gmail.com: @dan.kozlowski I've followed your steps and it worked like a charm :) thanks a lot. My system: openSUSE 11.1 64bit + FF 3.5rc3 64bit + Sun JVM 1.6 64bit + eclipse 3.4 + GWT trunk (with oophm enabled) For more information:

[gwt-contrib] Issue 2749: RichTextArea timing issue using BasicFormatter and ExtendedFormatter methods

2009-06-29 Thread jlabanca
Reviewers: jgw, Description: Description: === Using almost any method in the Basic or Extended formatter when the RichTextArea is detached results in a JS exception on all browsers. Even after it is attached, a JS exception occurs in some browsers if the area is not initialized or if it

[gwt-contrib] Re: RPC extension points

2009-06-29 Thread Freeland Abbott
FWIW, Dan Rice has also been working on this, if you hadn't seen his review thread from Friday. On Mon, Jun 29, 2009 at 6:14 AM, bruno bruno.marches...@gmail.com wrote: Hi Lex, The main problem comes from enhancement added fields, so user can add @GwtTransient annotation on it. Yes,

[gwt-contrib] Manifest for SOYC permutations

2009-06-29 Thread kprobst
Reviewers: Lex, Description: This patch creates a manifest file for each compilation permutation if the compilation is SOYC enabled. The manifest files are stored alongside other SOYC manifests (in the soycReport directory). Each manifest file contains all non-gwt properties for the

[gwt-contrib] Re: Allow detached JDO objects to be transferred via RPC

2009-06-29 Thread rice
http://gwt-code-reviews.appspot.com/47807/diff/1/9 File user/src/com/google/gwt/user/client/rpc/WeakMapping.java (right): http://gwt-code-reviews.appspot.com/47807/diff/1/9#newcode31 Line 31: public static Object get(Object instance, String key) { I'm not sure what can be said about the

[gwt-contrib] Issue 1441: RichTextArea no cursor until you type in Firefox

2009-06-29 Thread jlabanca
Reviewers: jgw, Description: Description: === In Firefox, the text caret always appears at the begining of the RichTextArea when the user clicks the first time, regardless of where in the RichTextArea the user clicked. The problem is that we set design mode on focus in Mozilla, which

[gwt-contrib] Re: SoyLite

2009-06-29 Thread Lex Spoon
On Sun, Jun 28, 2009 at 12:19 AM, John Tamplinj...@google.com wrote: On Fri, Jun 26, 2009 at 3:20 PM, Lex Spoon sp...@google.com wrote: I've been trying to think of ways to speed up the -soyc option, and here is the result of one attempt.  What do people think? The idea is to mimick some

[gwt-contrib] gen2 PagingScrollTable: programmatic cell editing

2009-06-29 Thread jay
Another piece of feedback on the incubator paging scroll table... I've got a case where I need to programmatically change the value in some cells (based on other input from the user). However, since the method used as the cell editor's callback is an anonymous, inline inner class, I have to

[gwt-contrib] Re: Allow detached JDO objects to be transferred via RPC

2009-06-29 Thread bobv
http://gwt-code-reviews.appspot.com/47807/diff/1/9 File user/src/com/google/gwt/user/client/rpc/WeakMapping.java (right): http://gwt-code-reviews.appspot.com/47807/diff/1/9#newcode31 Line 31: public static Object get(Object instance, String key) { On 2009/06/29 15:34:02, Dan Rice wrote: I'm

[gwt-contrib] Re: Issue 2749: RichTextArea timing i ssue using BasicFormatter and ExtendedFormatter methods

2009-06-29 Thread jgw
On 2009/06/29 15:08:27, jlabanca wrote: LGTM. http://gwt-code-reviews.appspot.com/49801 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] [google-web-toolkit commit] r5636 - Fixes an issue with a missing text caret in the RichTextArea in FF.

2009-06-29 Thread codesite-noreply
Author: jlaba...@google.com Date: Mon Jun 29 10:31:37 2009 New Revision: 5636 Modified: trunk/user/src/com/google/gwt/user/client/ui/impl/RichTextAreaImplMozilla.java Log: Fixes an issue with a missing text caret in the RichTextArea in FF. Patch by: jlabanca Review by: jgw Issue: 1441

[gwt-contrib] [google-web-toolkit commit] r5637 - Adds some assertions to RichTextArea to prevent users from using the formatters before th...

2009-06-29 Thread codesite-noreply
Author: jlaba...@google.com Date: Mon Jun 29 10:34:10 2009 New Revision: 5637 Modified: trunk/user/src/com/google/gwt/user/client/ui/RichTextArea.java trunk/user/src/com/google/gwt/user/client/ui/impl/RichTextAreaImplIE6.java

[gwt-contrib] Re: Add Impl.getNameOf() to expose JNameOf nodes to Java code

2009-06-29 Thread scottb
LGTM, with comment. http://gwt-code-reviews.appspot.com/46802/diff/1/3 File dev/core/src/com/google/gwt/dev/jjs/impl/ReplaceRebinds.java (right): http://gwt-code-reviews.appspot.com/46802/diff/1/3#newcode95 Line 95: // Proper JSNI ref Shouldn't most of this lookup logic be duplicated elsewhere

[gwt-contrib] Update RichTextAreaImplSafari

2009-06-29 Thread jlabanca
Reviewers: jgw, Description: Most of RichTextAreaImplSafari was written to support older versions of Safari, which we know longer need to support. I've stripped away all of the old stuff, leaving only a few Safari specific implementations. This patch also fixes issue 2813 by removing some

[gwt-contrib] [google-web-toolkit commit] r5638 - Fixed a broken test that would fail 0.1% of the time because it assumes that a Date has a...

2009-06-29 Thread codesite-noreply
Author: jlaba...@google.com Date: Mon Jun 29 13:22:41 2009 New Revision: 5638 Modified: trunk/user/test/com/google/gwt/emultest/java/sql/SqlTimestampTest.java Log: Fixed a broken test that would fail 0.1% of the time because it assumes that a Date has a non-zero millsecond field. Patch

[gwt-contrib] Re: SoyLite

2009-06-29 Thread Katharina Probst
Hi Lex, all of what you say makes sense to me. I think SoyLite is a great idea and we should go ahead with it. I do have one concern, however: as you mention below, some methods will simply appear to disappear under SoyLite. For instance, in your first example, Point.getX() will not appear to

[gwt-contrib] Re: Manifest for SOYC permutations

2009-06-29 Thread spoon
LGTM. Ideally, the similar information in the symbol maps files could be reused. However, this patch certainly does the job as is. It's up to you. http://gwt-code-reviews.appspot.com/50801 --~--~-~--~~~---~--~~

[gwt-contrib] using string constants in @def

2009-06-29 Thread Eric Ayers
Bob, I would like to use a string constant in an @def. Would you be open to a patch that added a new Method annotation to distinguish this type of accessor from a class name? -- Eric Z. Ayers - GWT Team - Atlanta, GA USA http://code.google.com/webtoolkit/

[gwt-contrib] Re: using string constants in @def

2009-06-29 Thread Eric Ayers
Sorry, a little more context, I'm talking about the CssResource class. On Mon, Jun 29, 2009 at 5:58 PM, Eric Ayerszun...@google.com wrote: Bob, I would like to use a string constant in an @def. Would you be open to a patch that added a new Method annotation to distinguish this type of

[gwt-contrib] Re: Manifest for SOYC permutations

2009-06-29 Thread Katharina Probst
Thanks, Lex. I've uploaded another patch for your review that addresses your comment. I'm still not quite certain which way is better - what do people think? Option 1: Create a manifest file for each permutation which carries the same permutation id as the existing SOYC report files. Good: Can

[gwt-contrib] IE8 disappearing history

2009-06-29 Thread Amir Kashani
I’m having a strange issue with trunk and IE8 where the browser’s history stack inexplicably “disappears”. That is, the history drop down list empties (including previously visited non-GWT sites, like MSN) and the back/forward buttons don’t work. My guess is that this is a bug in IE8 that GWT is

[gwt-contrib] GWTTestCase fails to run other module's onModuleLoad() methods

2009-06-29 Thread Fred Sauer
Scott, IIRC, you were most recently working on GWTTestCase changes. I just filed this issue which is throwing gwt-log users trying to use GWTTestCase: http://code.google.com/p/google-web-toolkit/issues/detail?id=3791 I hoping the described behavior is not as designed. Thanks -- Fred Sauer