Re: append new data in Livegrid

2008-09-16 Thread Amit Dhingra
Hi Khoa, I am not using the table part of it, but as far as I see, in the demo thinge, if you alter the number of rows, the data is loaded again in the panel. And probably you need the same thing. Further, you can actually have a look at the source. Cheers, Amit On Tue, Sep 16, 2008 at 1:19 AM,

Re: Page renders diffrently on FireFox then IE7 and Chrome

2008-09-16 Thread Jonas
Hi, just to clarify... It's the field Anmärkning that renders incorrectly in Firefox 3.0.1 on Windows XP Pro SP2 and SP3. In Firefox, the field ORDLISTAN is inside field Anmärkning were as in IE7 and Google Chrome it renders correctly, that is apart and not over another. Best regards, Jonas On

Re: GWT Eclipse Plugin????

2008-09-16 Thread olivier nouguier
Also cypal http://code.google.com/p/cypal-studio/ On Mon, Sep 15, 2008 at 5:56 PM, Vivek Singhwal [EMAIL PROTECTED]wrote: You can try out VistaFei, http://www.wirelexsoft.com/VistaFei.html It is a Eclipse version with GWT Plugin. Vivek GWT4Enterprise.com -- Quand le dernier

Re: JSNI method '@com.google.gwt.dom.client.OptionElement::setLabel(Ljava/lang/String;)'

2008-09-16 Thread Martin Trummer
looks like a bug to me On Sep 15, 6:33 pm, jchimene [EMAIL PROTECTED] wrote: Hi, I'm seeing the following message: [WARN] JSNI method '[EMAIL PROTECTED]::setLabel(Ljava/lang/ String;)' returned a value of type string but was declared void; it should not have returned a value at all Is

Re: Page renders diffrently on FireFox then IE7 and Chrome

2008-09-16 Thread Thomas Broyer
On 16 sep, 09:24, Jonas [EMAIL PROTECTED] wrote: Hi, just to clarify... It's the field Anmärkning that renders incorrectly in Firefox 3.0.1 on Windows XP Pro SP2 and SP3. In Firefox, the field ORDLISTAN is inside field Anmärkning were as in IE7 and Google Chrome it renders correctly, that

Re: Runtime pluggable modules/extensions

2008-09-16 Thread Stefan
After a bit of research, I discovered SOAFaces providing on-the-fly compilation. While this might solve some of the problems I described, it's no viable way to go, i think. Especially with large applications. Modules (Plug-ins/Extensions) we have would only need a one time compilation on

Re: JSNI method '@com.google.gwt.dom.client.OptionElement::setLabel(Ljava/lang/String;)'

2008-09-16 Thread Thomas Broyer
On 16 sep, 09:57, Martin Trummer [EMAIL PROTECTED] wrote: looks like a bug to me Yes, and it is also true of OptionElement::setDisabled. (the following regex didn't show others when ran on the gwt-user project: « native\s+void\s[^/]+\/\*-\{\s*return ») On Sep 15, 6:33 pm, jchimene [EMAIL

Re: Page renders diffrently on FireFox then IE7 and Chrome

2008-09-16 Thread Jonas
Hi, I think you might have a point here. I may have got the idea of HorizontalPanel backwards. I will try your approach and let you know. Thanks! Best regards, Jonas On 16 Sep, 11:53, Thomas Broyer [EMAIL PROTECTED] wrote: On 16 sep, 09:24, Jonas [EMAIL PROTECTED] wrote: Hi, just to

Re: GWT Eclipse Plugin????

2008-09-16 Thread alex.d
The best one, imho, is GWT Designer. Has everything you need. Worth to take a look: http://www.instantiations.com/windowbuilder/gwtdesigner/index.html On 16 Sep., 09:44, olivier nouguier [EMAIL PROTECTED] wrote: Also cypalhttp://code.google.com/p/cypal-studio/ On Mon, Sep 15, 2008 at 5:56 PM,

Re: Hibernate4GWT

2008-09-16 Thread Vivek Singhwal
Hi, Did you get sample for this? If not, then here is the sample example: http://gwt4enterprise.com/gwt_hibernate/GWT-Hibernate-Example.zip - You need to extend HibernateRemoteService in ServiceImpl and create a HibernateBeanManager there. check InsertServiceImpl.java. - Extends

Re: GWT Eclipse Plugin????

2008-09-16 Thread Lothar Kimmeringer
alex.d schrieb: The best one, imho, is GWT Designer. Has everything you need. Worth to take a look: http://www.instantiations.com/windowbuilder/gwtdesigner/index.html I agree with you, but just a little information to avoid people wondering that try out the current version. The current

Re: new Double(1.0).toString() = 1.0 in GWTShell / in others = 1

2008-09-16 Thread Lothar Kimmeringer
MN schrieb: the same problems i have with large double values: new Double(600702589).toString() = GWTShell: 6.00702589E8 = all other browsers: 600702589 is that a problem? The GWTShell is used for development and the differents results from the fact that the GWTShell is actually executing

Re: GWT Eclipse Plugin????

2008-09-16 Thread alex.d
Hmm... i'm using one of the latest builds (but not the very last) and i do not have this problem. On 16 Sep., 13:59, Lothar Kimmeringer [EMAIL PROTECTED] wrote: alex.d schrieb: The best one, imho, is GWT Designer. Has everything you need. Worth to take a look:

Re: GWT Eclipse Plugin????

2008-09-16 Thread Lothar Kimmeringer
alex.d schrieb: Hmm... i'm using one of the latest builds (but not the very last) and i do not have this problem. I was installing the current release of WindowBuilder Pro (containing designers for SWT and Swing as well) with date 2008.08.29. Funnily enough the version of the GWT designer in

Re: append new data in Livegrid

2008-09-16 Thread vruddhi shah
Hi Khoa, See this can be help to you... www.sample.gwt4enterprise.com Vruddhi On Mon, Sep 15, 2008 at 10:53 PM, Khoa [EMAIL PROTECTED] wrote: Hi, I am using Livegrid to display records from a database -- As new records are inserted into a database (by another program), I would like to

GWT Projects in Eclipse 3.4.0

2008-09-16 Thread Marcus
Hi all: I've been able to create the StockWatcher project and go through the tutorial. However, I'm having one difficulty with Eclipse. When I import the project into Eclipse (after running projectCreator applicationCreator), I only see the Java files under the src tree. I do not see any xml

Need to call Login servlet from remote website to establish sessions

2008-09-16 Thread Nadir
Hi All... I have quite the dilemma on my hands which I originally thought would be simple and I'm hoping someone can help bail me out, but not like Lehman was bailed out please. ;) Background: Our webapp is currently 100% GWT GWT-RPC based. The login page is a typicall username/password setup

Getting User Input from Input Field

2008-09-16 Thread WebDude
I'm trying to get the text entered by a user in an input field. It works in IE and in Hosted Mode, but not in Firefox or Chrome. I'm using DOM.getElementAttribute to read the text. When it doesn't work, all I get is an empty string. I've made simple test case by modifying the template code

Basic Authentication with GWT RPC requests

2008-09-16 Thread Jerome Velociter
Hello everybody, I am wondering if there is any special configuration, anything special to do to have GWT RPC requests work properly with HTTP basic authentication. We have an application configured to work with basic auth, everything works fine but the GWT async requests : those last ones do

GWT Compilation Time

2008-09-16 Thread Bal Krishna
Hi All, I am implementing I18 support for my application and I am using GWT I18 support. In my module file, I extended three locales and compilation time for my java files increased drastically. Earlier it was taking around 30-40 mins but after adding three locales in my module configuration file

Dynamic generated datya for download

2008-09-16 Thread husfeldt
I have some services (that I cannot or will not touch) that provides me with som JSON formatted data. This I use to show in tables, graphs etc.. But I would like to have a link/button next to the table.. download as CSV or download as XML or whatever.. Problem is that i need to process the data

Re: Invalid version number null when using the hosted mode

2008-09-16 Thread WildWarrior03
anybody found any solution? I am not using tomcat..I am not sure what is wrong..I also get the same error.. On Sep 5, 7:17 am, Noé [EMAIL PROTECTED] wrote: It works now. I think it was because of the cache on tomcat. To achieve this, I erased all the temporary files on the web server.

GWT Developer

2008-09-16 Thread Bal Krishna
Hi All, I don't have very much experience of GWT. But I have some problems that I want to discuss. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Problem with Line Position in GWT Diagramming

2008-09-16 Thread mayoo
What is the line dimension of the StraightTwoEndedConnection? I save the StraightTwoEndedConnection objects in the array and iterate the array and check each position is overlapped with some widget.if it is overlapped, i want to remove the connection from the canvas. i use cp.getMy().remove();

Out of Memory Error During GWT compilation

2008-09-16 Thread Bal Krishna
Hi All, I am using GWT in my application. My system is having 2GB RAM and I have around 2000 Java files to compile. During compiling the files, I am using JVM argument -Xmx1024M but my GWT compilation is failing and throwing this error. [java]Analyzing permutation #1 [java] [ERROR]

Re: new Double(1.0).toString() = 1.0 in GWTShell / in others = 1

2008-09-16 Thread MN
i know where it comes from, but i dont like the result of different values. i think it is a problem, if your development environment shows different values than in production. so you can not test or debug some situations etc. i can use NumberFormat, but this is a workaround. and i think only

Re: new Double(1.0).toString() = 1.0 in GWTShell / in others = 1

2008-09-16 Thread Lothar Kimmeringer
MN schrieb: i know where it comes from, but i dont like the result of different values. Then don't use toString. The behavior of toString is not always defined and especially with java.lang.Double I remember having had differences between different versions of the Java Virtual Machine

Re: Does the server side language matter?

2008-09-16 Thread Arthur Kalmenson
Hello Jim, My favorite IDE is certainly not eclipse, and probably not the best to use with Django. The server side can be quickly written and tested independent of the client side. I consider that a plus. You misunderstood what gregor meant. Gregor meant that if you have a Java back-end, you

Re: Out of Memory Error During GWT compilation

2008-09-16 Thread Andrej
the reason is Out of memory; to increase the amount of memory, use the -Xmx flag at startup so try to increase memory (and/or ensure that you are _using_ -Xmx param.) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Any ideas on how to make a popup stay on top?

2008-09-16 Thread Thomas Wrobel
This is odd, I just tried this at my end and it dosnt seem to work. Heres a screenshot of what I get: http://www.darkflame.co.uk/PopUpOrderingProblem.jpg Heres a 7zip of the whole test project: http://www.darkflame.co.uk/testproject.7z 2008/9/12 Thomas Broyer [EMAIL PROTECTED]: On 11 sep,

Re: GWT 1.5 Migration from GWT1.4

2008-09-16 Thread [EMAIL PROTECTED]
Dasa, There's a lot of posts and replies on the forum about this issue. Try searching for Content-Type. -David On Sep 15, 11:10 am, dasa [EMAIL PROTECTED] wrote: Hi, Iam getting following Exception while migrating my project from GWT1.4 to GWT1.5. Can anyone help me on this issue.

Re: GWT Eclipse Plugin????

2008-09-16 Thread Eric Clayberg - Instantiations
This has already been fixed in the latest build. See the e-mail that our support group sent to you earlier. This problem actually only appeared in a few builds and was the result of trying to work around a problem with GWT-Ext. We backed out the work around and restored the original (correct)

Send a widget to the server?

2008-09-16 Thread Markuz05
Hi, I wonder if it's possible, and if it' a good choice send a widget to the server. My application is a typical CRUD application where users search data, edits and sends them back to the server. Data are displayed on the browser in tables. I created a complicated data-structure to store data in

Re: Upgrade from 1.4.62 to 1.5 failed

2008-09-16 Thread cengaver
my error message becames like this. I'm still working on it but still not working. Any help will be appreciated! 16:46:24,564 INFO [RuleBase] parsing rules: /security.drl 16:46:24,892 INFO [Contexts] starting up: org.jboss.seam.web.session 16:46:24,955 ERROR [[/paragon]] Exception while

Re: GWT Eclipse Plugin????

2008-09-16 Thread Lothar Kimmeringer
Eric Clayberg - Instantiations schrieb: This has already been fixed in the latest build. See the e-mail that our support group sent to you earlier. Five minutes after sending my email to google-groups to be exact ;-) (at 15:01 CEST, so a bit more than 5 minutes) This problem actually only

Re: Getting User Input from Input Field

2008-09-16 Thread Danny Schimke
You init an element with com.google.gwt.user.client.Element elem = DOM.getChild(inputHTML.getElement(), 0); and then you wanted to get the value val = DOM.getElementAttribute(elem, value);. Why you do not try to get the value by elem.getAttribute(value)? Or use a TextBox instead HTML(... your

Re: Does the server side language matter?

2008-09-16 Thread Jim Freeze
On Tue, Sep 16, 2008 at 8:02 AM, Arthur Kalmenson [EMAIL PROTECTED] wrote: Hello Jim, Hello Arthur My favorite IDE is certainly not eclipse, and probably not the best to use with Django. The server side can be quickly written and tested independent of the client side. I consider that a

Re: Does the server side language matter?

2008-09-16 Thread Thomas Broyer
On 15 sep, 20:53, Jim Freeze [EMAIL PROTECTED] wrote: JSON can be made as fast and json libraries for python already exist. So, I seriously doubt anyone is writing JSON serialization from scratch. Your server side code probably only needs to be modified with self.data.to_json. ...but if

Re: Out of Memory Error During GWT compilation

2008-09-16 Thread Chinmay Bajikar
Hi, I experienced the same issue while migrating from 1.4 to 1.5. We had a lot of non-parametrized collections like maps lists ( we had typeargs annotations defined for them). And compilation used to give a whole lot of warnings for the same. After changing our code to have parametrized

Deploying GWT on IIS (w/ .cache and .nocache honored)

2008-09-16 Thread [EMAIL PROTECTED]
How would one configure IIS to be able to deploy a GWT application properly (w/ the .nocache and .cache being honored)? I know that there are global caching settings, but that's not adequate. I think one could do this w/ ASP.Net acting as a filter and forcing HTTP headers. But this would

Re: Does the server side language matter?

2008-09-16 Thread Jim Freeze
On Tue, Sep 16, 2008 at 10:10 AM, Thomas Broyer [EMAIL PROTECTED] wrote: On 15 sep, 20:53, Jim Freeze [EMAIL PROTECTED] wrote: JSON can be made as fast and json libraries for python already exist. So, I seriously doubt anyone is writing JSON serialization from scratch. Your server side

Re: Getting User Input from Input Field

2008-09-16 Thread Thomas Broyer
On 15 sep, 22:20, WebDude [EMAIL PROTECTED] wrote: I'm trying to get the text entered by a user in an input field.  It works in IE and in Hosted Mode, but not in Firefox or Chrome.  I'm using DOM.getElementAttribute to read the text.  When it doesn't work, all I get is an empty string.  

GWT-Maven updated, now supports 1.5 (and has gotten a lot of other updates)

2008-09-16 Thread Charlie Collins
Just a bump to let this list know that GWT-Maven has been updated quite a bit recently. http://code.google.com/p/gwt-maven/ The new version is a lot more straightforward to configure (using more Maven-ish approaches where possible), launches the shell a lot faster, supports debugging, supports

Re: GWT Developer

2008-09-16 Thread walden
Ok, but we'll need a medical history first. And what is your insurance? ;-) On Sep 16, 6:04 am, Bal Krishna [EMAIL PROTECTED] wrote: Hi All, I don't have very much experience of GWT. But I have some problems that I want to discuss. --~--~-~--~~~---~--~~ You

Re: RemoteServiceServlet#doGetSerializationPolicy

2008-09-16 Thread adam
Thanks very much for pointing out the comment text that I stupidly missed. Next time I'll read the comments more clearly before implementing a workaround and/or posting to the forum. Bis bald, Adam On Sep 16, 3:19 am, daniel.z [EMAIL PROTECTED] wrote: Hi Adam. When looking in the source of

Re: Does the server side language matter?

2008-09-16 Thread walden
Thomas, On Sep 16, 11:10 am, Thomas Broyer [EMAIL PROTECTED] wrote: (I you ask me my opinion: GWT-RPC is not RESTful so I don't use it, but the hability to share a class between client and server code is appealing; I'm not using such a thing either though) How do you arrive at that opinion?

Re: Multiple serialization policies generated

2008-09-16 Thread Isaac Truett
On Sun, Sep 14, 2008 at 5:52 AM, daniel.z [EMAIL PROTECTED] wrote: I'm using GWT 1.5.2 with hibernate4gwt 1.1b and the maven- googlewebtoolkit2-plugin 2.0-beta20 and im currently getting multiple differing serialization policy files (*.gwt.rpc) generated. I wondered if there is one file per

Modal PopupPanel

2008-09-16 Thread Chinmay Bajikar
Hi, This used to work in 1.4. If we set the PopupPanel as AutoHide=false,Modal= true, then other widgets in our app ignored the clicks until the PopupPanel was hidden. Since migrating to 1.5 this has stopped working. Any ideas on this. I checked the issues list and couldn't find any issue

Extending GWTShell

2008-09-16 Thread Leandro Rodrigo Saad Cruz
Hi all. I'm working on GWTShell to enable a new flag -serverclass. The -serverclass tag should enable the GWTShell to start other servlet container other than Tomcat. Is this a general need? If you want I can send the code to the list. Cheers. -- Leandro Rodrigo Saad Cruz software developer -

GWT Google Maps InfoWindow Resizing

2008-09-16 Thread Pavel Byles
Does anyone know how to make the InfoWindow resize once the content has been loaded within it? -Pavel --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Accessing a Javascript variable

2008-09-16 Thread ben
nevermind, just figured it out while I was typing. I needed to use $wnd.my_variable for those interested public static native String getMyVariable() /*-{ return $wnd.my_variable; }-*/ On Sep 16, 2:07 pm, ben [EMAIL PROTECTED] wrote: Hey All, I have a question on how to go about

Re: Does the server side language matter?

2008-09-16 Thread John
Thanks for the suggestions everyone. Definitely some things to think about in them. I probably should have explained that I am looking at things more from an architecture design view. I am not likely going to do very much coding on this myself, but I don't want to end up with the ball of mud

Re: GWT Eclipse Plugin????

2008-09-16 Thread Eric Clayberg - Instantiations
My understanding is that it will contain tools to ease development of GWT apps in Eclipse (project wizards, code assist, compilation assitance, maybe deployment aids). They don't plan to include any GUI development pieces so it will be complementary to GWT Designer. We might even layer GWT

Re: Modal PopupPanel

2008-09-16 Thread Chinmay Bajikar
More Updates on this. I have my own popup class which extends PopupPanel. then I have some other places where I use PopupPanel directly. The ones that I use direct work fine as modal=true, but the one that extend PopupPanel dont. Also I will take the statement that it worked in 1.4 back. My bad

Re: JSNI method '@com.google.gwt.dom.client.OptionElement::setLabel(Ljava/lang/String;)'

2008-09-16 Thread jchimene
Thanks, I'll file a bug. On Sep 15, 9:33 am, jchimene [EMAIL PROTECTED] wrote: Hi, I'm seeing the following message: [WARN] JSNI method '[EMAIL PROTECTED]::setLabel(Ljava/lang/ String;)' returned a value of type string but was declared void; it should not have returned a value at all Is

Re: Send a widget to the server?

2008-09-16 Thread WadeC
Don't sent the widgets to the server. Just send the data from the widget to the server... On Sep 16, 6:53 am, Markuz05 [EMAIL PROTECTED] wrote: Hi, I wonder if it's possible, and if it' a good choice send a widget to the server. My application is a typical CRUD application where users search

Re: Does the server side language matter?

2008-09-16 Thread Lothar Kimmeringer
Hello Jim, Jim Freeze schrieb: Oh boy, you lost me. I'm not sure your point, but dynamic languages have the ability to test the server side in a runtime environment. Maybe we should talk about the word test here. Do you mean trying out something and see a result without the need of

Re: GWT Google Maps InfoWindow Resizing

2008-09-16 Thread Eric Ayers
I just added a patch for the GInfoWindow.reset() method in the issue tracker, but I was unable to get it to work reliably. I have a question into the Maps folks. -Eric. On Tue, Sep 16, 2008 at 1:39 PM, Pavel Byles [EMAIL PROTECTED] wrote: Does anyone know how to make the InfoWindow resize

Re: Does the server side language matter?

2008-09-16 Thread gregor
Jim, your words Oh boy, you lost me. I'm not sure your point, but dynamic languages have the ability to test the server side in a runtime environment. I think the only difference is that dynamic languages don't compile. Granted, that prevents some bugs, but not all bugs. Can you

Re: GWT Google Maps InfoWindow Resizing

2008-09-16 Thread Pavel Byles
I know the JS api has a resize function.. but GWT doesn't. Also I've seen others do it but have no idea how it's done. -Pavel On Tue, Sep 16, 2008 at 3:11 PM, Eric Ayers [EMAIL PROTECTED] wrote: I just added a patch for the GInfoWindow.reset() method in the issue tracker, but I was unable to

Re: Out of Memory Error During GWT compilation

2008-09-16 Thread Filipe Sousa
Bal Krishna wrote: Hi All, I am using GWT in my application. My system is having 2GB RAM and I have around 2000 Java files to compile. During compiling the files, I am using JVM argument -Xmx1024M but my GWT compilation is failing and throwing this error. I'm having the same problem and I

Re: Problem with mouse selection of suggestions in SuggestBox which is disabled in onLostFocus

2008-09-16 Thread jakob.korherr
And it works! Take a look at my blog: http://my.epos4.at/fota/blog/blogid/245_Workaround_for_GWT_Issue_729_in_SuggestBox On Sep 15, 7:39 pm, jakob.korherr [EMAIL PROTECTED] wrote: Now I think I just found the solution. I have to use a MouseListener on the popup the set a flag whether the

Error This UIObject's element is not set;

2008-09-16 Thread Shi
Hi, I'm trying to compose the widget, but I get the same mistake.I simplified the code of 2 modules that I consider: - import com.google.gwt.user.client.ui.RootPanel; import com.google.gwt.user.client.ui.VerticalPanel; import com.google.gwt.user.client.ui.Composite; public class MenuHome

Re: Invalid version number null when using the hosted mode

2008-09-16 Thread Daniel
I'm getting this same problem. I'm using osx and noserver mode. I have tried force refreshing from within the hosted mode, and also tried clearing the cache/history from within safari (not sure if they are linked). I also noticed the comment earlier about loading the hosted.html file from the

Re: Invalid version number null when using the hosted mode

2008-09-16 Thread Daniel
One more thing. I'm using JBoss and have tried clearing out all tmp/ work directories to no avail. Also, when looking at the access log in jboss you don't see a request for the hosted.html file. On Sep 16, 2:28 pm, Daniel [EMAIL PROTECTED] wrote: I'm getting this same problem.  I'm using osx

Re: GWT Google Maps InfoWindow Resizing

2008-09-16 Thread Eric Ayers
I didn't see a resize() function other than reset() On Tue, Sep 16, 2008 at 4:25 PM, Pavel Byles [EMAIL PROTECTED] wrote: I know the JS api has a resize function.. but GWT doesn't. Also I've seen others do it but have no idea how it's done. -Pavel On Tue, Sep 16, 2008 at 3:11 PM, Eric

Re: Best solution for client-side graphing in GWT?

2008-09-16 Thread [EMAIL PROTECTED]
I do have a library together, currently it is very undocumented, however it does follow the same structure as Flotr. http://code.google.com/p/glotr/ On Sep 12, 1:44 pm, Perelman Nathan (Nathan) [EMAIL PROTECTED] wrote: I'm aware that that is possible, I'd rather not reinvent the wheel myself.

Re: Best solution for client-side graphing in GWT?

2008-09-16 Thread [EMAIL PROTECTED]
Please do note that the library requires gwt-1.5.X and gwt-incubator. On Sep 16, 6:27 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I do have a library together, currently it is very undocumented, however it does follow the same structure as Flotr. http://code.google.com/p/glotr/ On Sep

Re: GWT Google Maps InfoWindow Resizing

2008-09-16 Thread Pavel Byles
Yes... reset is what I was referring to On Tue, Sep 16, 2008 at 4:43 PM, Eric Ayers [EMAIL PROTECTED] wrote: I didn't see a resize() function other than reset() On Tue, Sep 16, 2008 at 4:25 PM, Pavel Byles [EMAIL PROTECTED] wrote: I know the JS api has a resize function.. but GWT doesn't.

#token fragment sometimes cause page reload, sometimes not?

2008-09-16 Thread Brice
Good evening. I am working on a new GWT app and I noticed a few strange behaviors in IE 7 that I didn't see in FireFox / Safari. Particularly that a link with a #token will cause a page refresh if its in my wrapper HTML, but not if its generated by GWT. This doesn't happen (from what I can see)

[gwt-contrib] Re: Code Review: gwt-google-apis Maps update the DirectionsTest

2008-09-16 Thread Eric Ayers
I updated issue 171 - the 1.5.2 release is broken on this unit test, but has been subsequently fixed. See GWT issue 2841 http://code.google.com/p/google-web-toolkit/issues/detail?id=2841 On Mon, Sep 15, 2008 at 4:30 PM, Eric Ayers [EMAIL PROTECTED] wrote: Hello Miguel, This resolves issue

[gwt-contrib] Re: RR : Three new RPC design docs

2008-09-16 Thread Bruce Johnson
Bob, this is a great first step (three, actually) towards taking RPC to the next level. Here are my notes on deRPC specifically. On Mon, Sep 1, 2008 at 8:09 PM, BobV [EMAIL PROTECTED] wrote: This document is more about how we might revamp the RPC payload format to improve deserialization speed,

[gwt-contrib] Re: Collection of core JS overlay types

2008-09-16 Thread Thomas Broyer
On 15 sep, 23:23, Folke Behrens [EMAIL PROTECTED] wrote: With all the conversions to JSOs/overlay types going on I was wondering if it makes sense to provide implementions of the core JavaScript objects as well. I've already submitted RegExp (issue 1727)? (Granted, Math and Date are pretty

[gwt-contrib] Re: RR : Three new RPC design docs

2008-09-16 Thread BobV
1) Avoiding slow-script warnings (SSWs) during RPC response deserialization - directly-evalable responses is one approach, to the extent that the response is written to be break-up-able (i.e. amenable to incremental commands); in the design doc, it does not appear that this crucial problem

[gwt-contrib] Code Review: gwt-google-apis Maps issue 170 - InfoWindow should be Overlay subclass

2008-09-16 Thread Eric Ayers
Hello Miguel, I would like you to review the attached patch. This patch addresses issue 170 http://code.google.com/p/gwt-google-apis/issues/detail?id=170 This change makes InfoWindow extend the ConcreteOverlay class. It also adds the methods isInfoWindow(), isPolyline(), isPolygon(), and

[gwt-contrib] Re: RR: timezone support and updates to DateTimeFormat

2008-09-16 Thread Rajeev Dayal
Hey Alex, Good job with this. Generally, looks good, with a bunch of nits (many related to doc). I've mentioned them on a per-file basis below. If you could take care of these nits (provided that you agree with them), go ahead and commit; there's no need to iterate again on this patch unless you

[gwt-contrib] [google-web-toolkit commit] r3653 - changes/spoon/runAsync/user/src/com/google/gwt/core/client

2008-09-16 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Sep 16 14:34:31 2008 New Revision: 3653 Modified: changes/spoon/runAsync/user/src/com/google/gwt/core/client/GWT.java Log: By default, have GWT.runAsync() run the callback with no questions asked. This allows calling runAsync in code that might or might

[gwt-contrib] Re: RR: timezone support and updates to DateTimeFormat

2008-09-16 Thread Alex Rudnick
Hey Rajeev :) Thanks for the review! Responses inline. The upshot: OK, fixed, committed r3655. On Tue, Sep 16, 2008 at 2:48 PM, Rajeev Dayal [EMAIL PROTECTED] wrote: TimeZoneConstants.java 24: should read ..the actual data is defined in property files named TimeZoneConstants_xx.properties..

[gwt-contrib] [google-web-toolkit commit] r3656 - in trunk: dev/core/src/com/google/gwt/dev/cfg dev/core/src/com/google/gwt/dev/shell user/...

2008-09-16 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Sep 16 18:30:47 2008 New Revision: 3656 Modified: trunk/dev/core/src/com/google/gwt/dev/cfg/StaticPropertyOracle.java trunk/dev/core/src/com/google/gwt/dev/shell/ModuleSpacePropertyOracle.java trunk/user/test/com/google/gwt/i18n/I18N2Test.gwt.xml

[gwt-contrib] Re: one-word review for trivial patch in About.java

2008-09-16 Thread Scott Blum
Thanks, committed as r3658. I'd already removed the echo in my local. On Mon, Sep 15, 2008 at 8:53 PM, Freeland Abbott [EMAIL PROTECTED] wrote: -- Forwarded message -- Date: Thu, Sep 11, 2008 at 12:52 PM Subject: Re: [gwt-contrib] Re: one-word review for trivial patch in

[gwt-contrib] [google-web-toolkit commit] r3659 - in changes/spoon/runAsync/dev/core/src/com/google/gwt/dev/jjs: . impl

2008-09-16 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Sep 16 19:18:10 2008 New Revision: 3659 Modified: changes/spoon/runAsync/dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java changes/spoon/runAsync/dev/core/src/com/google/gwt/dev/jjs/impl/GenerateJavaScriptAST.java