Problem with Smartgwt and Activemq's Ajax code

2008-12-17 Thread Pete Kay
Hi, I have GWT jsni wrapper built for Activemq's amq.js without any problem. The problem is when I migrated the GWT code to smartgwt, smartgwt seems to have function name conflict with functions in prototype.js. I tried modifyng the function names in prototype.js ( the find and select

Re: GWT integrated with JSF

2008-12-17 Thread olivier FRESSE
I'm quite overloaded this week, so I won't have too much time to make a detailed answer :-( From my understanding G4JSF is dead and replaced by ajax4jsf, which is quite different. It makes no use of GWT. If you want a clean and powerful way of keeping state in a GWT/Jsf mixed appication , seam

Re: Who's Using GWT?

2008-12-17 Thread ofrias
Hi Arthur. The datepicker is in the homepage which is not GWT (only result pages both for flights and hotels are). It uses DHTML Calendar: http://www.dynarch.com/projects/calendar/ The result grid is custom built using a table. Oscar - http://www.trabber.com On 12 dic, 16:29, Arthur

Re: How to forward in GWT?

2008-12-17 Thread Jason Morris
Window.Location.assign(String url) Should do what you're looking for. crnl...@gmail.com wrote: I have a problem when creating forward in different apps in GWT. I tryed to implement it by using method WIndow.Location.replace (String url), But by this way I can't back to History.

Re: How to deploy multiple module and RPC app...

2008-12-17 Thread Iván López
Hello, I've found the same problem as you. I'm developing an application but at the end, I wanted to deploy in a real tomcat to test it. After a lot of tests I got it. I've created and ant task to create the war file. The steps are: - Compile all the java. - Compile to javascript. - Copy the

Re: Getting FastTree Events

2008-12-17 Thread Mark Rieck
I've changed my code. Now for every FastTreeItem I create, I override everything like this: FastTreeItem fti1 = new FastTreeItem(test1){ public void onSelected() {

RE: Client-side JSON Serialization?

2008-12-17 Thread Gilbert, Clint
We're making an app that visualizes data in a number of ways. Data sets can be uploaded to and downloaded from the server, as well as merged, subtracted, etc. All the data manipulation happens on the client; the client should be able to store users' data sets on the server after they've been

GWTCanvas, TabPanels, Internet Explorer

2008-12-17 Thread soundseeker
hello, canvas in tab panels seem not to work correctly in IE 7, in firefox 3 do. after klicking on a tab in ie my canvas object is visible for a moment then it disappears. it works correctly in firefox. the code: ProjectCanvas pc = new ProjectCanvas(); GWTCanvas gwtc =

Re: Multiple Json requests problem in parsing

2008-12-17 Thread wouter
Do you use the same RequestCallback object for all requests ? That would explain your problem, responses arrive in a random order and your callback has no way of knowing what response it's handling. If I'm right, perhaps try using a specific callback per request. On Dec 17, 12:25 pm, jake H

IE6 Incompatibility

2008-12-17 Thread Mila
Is anyone aware of incompatibilities of google web tool with ie6 or ie7? if there is any are there workarounds? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Width of widgets added in Grid

2008-12-17 Thread gregor
Look up HTMLTable.ColumnFormatter (Grid's superclass) in javadoc - you should be able to do what you need with that. On Dec 17, 3:52 pm, hezjing hezj...@gmail.com wrote: Hi I have the following code to display input field for username and password:         Label usernameLabel = new

Re: UI alignment collapses with GChart

2008-12-17 Thread John Gunther
By default, Client-side GChart's axis min/max are data determined, which I believe is what is causing the collapsing with no data that you mentioned. To stop that, explicitly set axis min/max via the setAxisMax and setAxisMin methods, as described here:

Re: GWT application performance

2008-12-17 Thread DaBlick
Doesn't help right NOW but... It may help in the future when you can dynamically/selective load individual modules (or panels). These features are seemingly going to be in the next release. On Dec 15, 9:18 pm, banty_shaily shailysi...@gmail.com wrote: Hi, Does creating more modules helps in

Re: Dollar sign in filename

2008-12-17 Thread jchimene
Hi, As I indicated earlier, it's not clear to me that these files are automatically created by the compiler (although the file in question may have been generated initially by i18nCreator) The file name contents are part of the rich text toolbar implementation in the GWT showcase. I don't

Images using ImageBundle are only correct using IE

2008-12-17 Thread dhoffer
We have a single ImageBundle that works fine in Hosted mode (Windows) and the images display correctly when the app runs in IE however all the images are cropped incorrectly when run with Firefox Chrome. The incorrect images show the full image plus the left portion of the image next to it on

Sending objects from client to server

2008-12-17 Thread fatjack1...@googlemail.com
Hi, I wonder if anyone can help me. I am new to GWT so am still trying to get my head round how everything works... So basically I have my server set up. It can send data to the client using an AsyncCallback etc. Now I need the client to send something back to the server. For example, if the

Re: Tree Graph using GWT

2008-12-17 Thread kilkenny
Hi Paddy The gwt-google-apis project (http://code.google.com/p/gwt-google- apis/) recently released a GWT-wrapper for the Google Visualization API (http://code.google.com/intl/de-CH/apis/visualization/). They may have something useful, for example the organizational chart..? Regards, Adrian --

Re: Reading POST parameters on GWT app

2008-12-17 Thread Croc
Someone please...? On Dec 16, 10:40 pm, Croc yair.oha...@gmail.com wrote: Hi All, I am new to gwt and didn't find how to read post paramters in GWT App. meaning that i have an html page with uses some input fields (pure html 0 no java script) and this html is redirecting to my gwt app , i

Re: Dollar sign in filename

2008-12-17 Thread rakesh wagh
those files are automatically generated by the compiler. They are typically inner classes. What is your concern by the way? On Dec 16, 5:55 pm, jchimene jchim...@gmail.com wrote: Hi, Would someone please post a link to the documentation for the filenaming convention that allows for names

Re: Reading POST parameters on GWT app

2008-12-17 Thread Jason Essington
Correct, you cannot read the post parameters from the client, as they don't really exist. An HTTP post supplies the post parameters as the content of the request (server) and they are no longer available when the response is returned (client) you would have to parse the parameters on the

Re: J2EE and debug in hosted mode

2008-12-17 Thread olivier
Well the GWT module isn't loaded at all... I use seam remoting instead of GWT Servlets. RPC works fine, the issue is that GWTSehll doesn't see the GWT modules in the page... On 15 déc, 18:02, jos jot...@gmail.com wrote: Bandesz, Gregor is pointing you in the right direction w/ option #1,

Re: Client-side JSON Serialization?

2008-12-17 Thread mikedshaf...@gmail.com
I haven't done anything non-trivial in JSON GWT, but what are you looking to do that you can't do natively with GWT? Like on these examples: http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=GettingStartedJSON I'm trying to figure out your use case

Re: Reading POST parameters on GWT app

2008-12-17 Thread Yair Ohayon
Great , that's exactly what i want to do. How do i parse that parameters on the server ? Maybe this example will clearify what i am searching for some web site ... form method=POST action= http://localhost:/com.startup.strhandle/strhandle.html; User Name input name=l-namebr

Re: Internationalization not working for all strings

2008-12-17 Thread Owz
Thanks for the suggestions. I've actually just managed to solve the problem. It was partly down to my inexperience with property files and partly because I'm a numpty! Basically, the strings that weren't being localised were all defined with a - (hyphen) e.g. clear-sort: Clear Sort The hyphen

Re: Tree Graph using GWT

2008-12-17 Thread Paddy
Kilkenny, Life saver! thank you that helped me alot it's exactly what I was looking for. I'm having trouble running the compile or the shell command of my project while trying to include the visualizations jar. Any tips? I've edited the commands to include the path to the jar and also imported

Re: Yet another maven-gwt-plugin

2008-12-17 Thread ponthiaux eric
Hum... consolidate doesn't mean complicate . That's the problem in fact ... regards . 2008/12/16 Arthur Kalmenson arthur.k...@gmail.com Just curious, why create another Maven plugin? There's already efforts to consolidate the codehaus and Google Code gwt-maven plugins -- Arthur

Re: Align a widget middle-top in HorizontalPanel

2008-12-17 Thread hezjing
Hi Gregor Yes, the problem is overcome by panel.setHeight(200px). Thank you! On Tue, Dec 16, 2008 at 10:51 PM, gregor greg.power...@googlemail.comwrote: Hi Hez, In fact your code works as you expect in FF, but not in IE. Don't know exactly why, but I think it is because IE thinks

Re: GWTCanvas, TabPanels, Internet Explorer

2008-12-17 Thread sloughran
It looks like Tab Panels + Canvas is a known bug. It's actually surprising you didn't get an Exception: http://code.google.com/p/gwt-canvas/issues/detail?id=4 I didn't even know this library existed, this is absolutely awesome. I made an interactive rectangle program in minutes! On Dec 17,

Using Google Visualization API inside asynchronous GWT methods

2008-12-17 Thread Lonifasiko
I've achieved the integration of a very simple piechart powered by Google Visualization API into a simple GWT application. Nevertheless, it seems that I can only create and manipulate the chart programatically properly when the code generating the graph is placed under onModuleLoad method,

Re: Editable Grid using GWT ?

2008-12-17 Thread Arthur Kalmenson
For an editable grid, take a look at the PagingScrollTable: http://code.google.com/docreader/#p=google-web-toolkit-incubators=google-web-toolkit-incubatort=PagingScrollTable Drag and drop capabilities can be done with the gwt-dnd project: http://code.google.com/p/gwt-dnd/. I haven't tried it

Re: Problem with Smartgwt and Activemq's Ajax code

2008-12-17 Thread Arthur Kalmenson
You'll probably have better luck asking on the SmartGWT forums: http://forums.smartclient.com/ -- Arthur Kalmenson On Wed, Dec 17, 2008 at 3:08 AM, Pete Kay pete...@gmail.com wrote: Hi, I have GWT jsni wrapper built for Activemq's amq.js without any problem. The problem is when I

GWT for Social Networking Site (GWT and CMS)

2008-12-17 Thread Paranoid Android
Hello. I'm working on a project aimed at developing a core platform for building a social network website. This platform should be extendible and should include technologies like Foaf, XFN, OpenID, Reccomendation Algorithms, maybe OpenSocial etc... The front-end should be built using GWT. Now my

Re: Reading POST parameters on GWT app

2008-12-17 Thread olivier FRESSE
The client side of GWT won't help you. The server side is the GWT RPC mechanism, and it won't help you a lot too. It depends of the server technology. If you're in a java world, best would be to rely on a servlet. They are indeed made to manage such things :-) you would have something like

Re: static method wrap(Element) conflicts compiler error. Why?

2008-12-17 Thread John Gunther
Sorry missed your reply until now. Such an error message as you suggest would have made it a lot easier, in my case, to track down what the problem was. Part of the issue is that 1.4 compliance does not fail in every case, so I had been working along for a while with GWT 1.5 and 1.4 compliance

Re: Reading POST parameters on GWT app

2008-12-17 Thread Croc
Great , Thanks a lot! On Dec 17, 9:48 pm, olivier FRESSE olivier.fre...@gmail.com wrote: The client side of GWT won't help you. The server side is the GWT RPC mechanism, and it won't help you a lot too. It depends  of the server technology. If you're in a java world, best would be to rely on

dynamically hide/show panel's header

2008-12-17 Thread jbroquefere
Hello, when i use Panel panel = new Panel(blabla); then panel.setHeader(false); it hides the header but panel.setHeader(true) doesnt nothing how could i do? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: BREAK tag from RichTextArea.getHTML()

2008-12-17 Thread Thomas Broyer
On 17 déc, 02:52, jchimene jchim...@gmail.com wrote: Hi, I'm running the results of RichTextArea.getHTML() through xsltproc. It's complaining about unclosed tags. The culprit seems to be the break tag: report         case                 conditionspan style=background-color: green;some

Re: Sending objects from client to server

2008-12-17 Thread Isaac Truett
Just add a parameter to the GWT RPC service method. Like this (assuming GWT 1.5): public interface MyRpc extends RemoteService { String doStuff(String arg); } public interface MyRpcAsync { void doStuff(String arg, AsyncCallbackString callback); } On Wed, Dec 17, 2008 at 10:17 AM,

Re: Multiple Json requests problem in parsing

2008-12-17 Thread jake H
Ty , indeed the problem was the asynchronous communication. I put a while loop which runs till all the array is filled with the appropriate data. The problem is that this can run in infinity!!! ( it took around 4 sec for my application to be drawn , imagine if i had more data to retrieve?!) Is

How to close application using GWT code

2008-12-17 Thread Arul
Hi, I have a button called close, when selecting the button I want the application gets closed instead selecting exit button either IE browser or hosted browser window exit button. In VB, there would be function to achive this but in GWT I am unable to find this? Could anone send me the

Re: GWT RIA s ?

2008-12-17 Thread Arthur Kalmenson
I'm hoping that a lot of those things will be added to the incubator in the near future. I've mentioned the request for simpler security similar to Spring Security's @Secured(ROLE_USER) annotations. Data binding and validation frameworks are on their way as well, in the near future. I would stay

Re: New to GWT - how to start - basic directions

2008-12-17 Thread Arthur Kalmenson
You would integrate GWT into your JSP as you would any other Javascript. You just need to link to the .nocache.js script in your JSP file and the GWT module will be loaded. If you want a good book on how to mesh different technologies with GWT, check out Pro Web 2.0 Application Development with

Re: GWT for Social Networking Site (GWT and CMS)

2008-12-17 Thread HommeDeJava
Greetings, You should definetely look at OpenSocial and the Shindig server implementation (http://incubator.apache.org/shindig/). Shindig directly offers REST and RPC APIs and gateways to outside CMS in Java and PHP. On the frontend side, GWT offers almost all the « gadgetries » you could need

Re: dynamically hide/show panel's header

2008-12-17 Thread Mikhail M
try this one panel.setTitle(blabla); 2008/12/17 jbroquefere jeanbaptiste.roquef...@gmail.com Hello, when i use Panel panel = new Panel(blabla); then panel.setHeader(false); it hides the header but panel.setHeader(true) doesnt nothing how could i do?

Re: Multiple Json requests problem in parsing

2008-12-17 Thread jake H
so is there any solution about asynchronous communication? should i work with deadlocks? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

GETting a request to another server from hosted mode while debugging (whitelist?)

2008-12-17 Thread dduck
Hi, I am debugging a piece of code that GETting a request to a server that isn't localhost. The code looks like this: public void recieveRequest(final ServerResponseRecipient callbackOnCompletion) { this.callback = callbackOnCompletion; final

Re: Calling of business method from Client

2008-12-17 Thread gregor
Hi Arul, Yes and no. Yes. this is the way you set up RPC services client side, but no, you do not necessarily have to have dozens of separate callbacks, one for every single use case. For example, here you have two methods that both return vectors of accounts. You can merge them into a single

Re: Internationalization not working for all strings

2008-12-17 Thread Owz
Thanks for the suggestions. I've actually just managed to solve the problem. It was partly down to my inexperience with property files and partly because I'm a numpty! Basically, the strings that weren't being localised were all defined with a - (hyphen) e.g. clear-sort: Clear Sort The hyphen

Link to documentation broken?

2008-12-17 Thread dduck
Hi, When clicking the Developers guide link here: http://code.google.com/intl/da-DK/webtoolkit/overview.html ..I no longer get the developers guide. I get the Google code Documentation Reader page instead. Any idea why? Anders --~--~-~--~~~---~--~~ You received

Creating a GWT Application from Scratch (with Eclipse)

2008-12-17 Thread jve
Hello, I'm trying to create a GWT Application from scratch (with Eclipse) like described in http://code.google.com/webtoolkit/gettingstarted.html. But I got the following Exception: [...@rhel4-1 MyProject]$ projectCreator -eclipse MyProject Exception in thread main

Re: Multiple Json requests problem in parsing

2008-12-17 Thread Thomas Broyer
On 17 déc, 12:25, jake H pnosti...@gmail.com wrote: so is there any solution about asynchronous communication? should i work with deadlocks? Actually, i'm not sure I've undertood your problem correctly. What isn't in the order you'd like? object properties from parsed JSON? or HTTP

Re: GWT RIA s ?

2008-12-17 Thread Rob Smith
Did anyone ask you opinion on use of third part libs in this thread. We know what your position is on using 3rd party libs and you have made it clear numerous times. Repeating the same thing again and again is just adding noise to this group. Gmail has a wonderful filter option and you can set

Sending Hibernate JPA persistent entities to the client

2008-12-17 Thread Smith
All, With GWT 1.5, is it possible to send the persistent hibernate entities directly to the client, without creating separate client side objects? I know it's not a good pattern, but just curious if that would work. I have read this didn't work with GWT 1.4 since annotations were not

Re: How to forward in GWT?

2008-12-17 Thread crnlm.cn
3x very much! --~--~-~--~~~---~--~~ 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 To unsubscribe from this group, send email to

Re: Editable Grid using GWT ?

2008-12-17 Thread Haz
Hi Arthur, I appreciate your help. I will definitely try the editable grid the gwt dnd project. Mean while do you want to take a look at my immature piece of code where i have tried to implement a drag drop that didn't work as expected ? (The draggable object is moving in

GWTExt chart on GWT widgets

2008-12-17 Thread Sanj
Hi All, I am facing a problem in rendering of GWT-EXT charts on GWT widgets in IE. When i am trying to render Chart panel on RootPanel then charts do not render properly in Hosted mode. But if i am adding same panel on viewPort then it's working fine. I have also updated the version of Flash

lostFocus/change events and Composites

2008-12-17 Thread Dave Ford
I have an issue and I suspect others may have encountered (and solved) this as well. It deals with change events and composite widgets. My problem occurs when combining two tasks that individually do not present a problem: 1. Using change listeners (or blur listeners). All of the stock html

Re: GWTExt chart on GWT widgets

2008-12-17 Thread Rob Smith
Arthur might be able to help you. On Dec 18, 12:08 am, Sanj sunil.ban...@daffodildb.com wrote: Hi All, I am facing a problem in rendering of GWT-EXT charts on GWT widgets in IE. When i am trying to render Chart panel on RootPanel then charts do not render properly in Hosted mode. But if i

RPC.encode not working

2008-12-17 Thread deanhiller
I have the following code in a servlet filter GwtSessionTimeout timeout = new GwtSessionTimeout( Session timed out. You need to redirect to the url in getUrl function, url); try {

Re: How to close application using GWT code

2008-12-17 Thread Arul
Hi Kevin, Thanks for your reply. The code is worked. Thanks Arul On Dec 17, 9:02 am, Kevin Tarn kevn.t...@gmail.com wrote: Use JSNI:     /**      * Close browser window.      */     public static native void closeBrowser()     /*-{         $wnd.close();     }-*/; Kevin On Wed, Dec

Re: Found bug in Gwt 1.5.3 History class

2008-12-17 Thread Rinku
Can anybody help me to solve this bug ? On Dec 17, 11:21 am, Rinku ashishkushwaha1...@gmail.com wrote: Please pay attention to this bug. The similar bug is reported in this thread :-http://groups.google.com/group/Google-Web-Toolkit/browse_thread/threa... On Dec 16, 3:33 pm, Rinku

Re: onHistoryChange(String token) is not working.

2008-12-17 Thread Rinku
Can anybody help me to solve this bug ? On Dec 17, 10:30 am, Rinku ashishkushwaha1...@gmail.com wrote: Similar issue is reported in this thread also.http://groups.google.com/group/Google-Web-Toolkit/browse_thread/threa... On Dec 17, 10:18 am, Rinku ashishkushwaha1...@gmail.com wrote: Hi

Re: Calling of business method from Client

2008-12-17 Thread Arul
Hi Gregor, I would like to thank you for replying to my query. I am trying my level best not to change DAO pattern which is already exists in my application. There were lot of methods returns ArrayList and Vectors for different purpose. According to your reply now I need to change my DO as well.

Re: Client-side JSON Serialization?

2008-12-17 Thread Shawn Pearce
Right. Its harder with the overlay types to define a map or something like that. You could try to wrap the JavaScriptObject with some class that knows to convert a list in native JS into a Java Map, but at that point you have about half of GWT's own RPC system, or gwtjsonrpc. This case of

Re: Client did not send nnn bytes as expected

2008-12-17 Thread Amit Kasher
I really appreciate you attempts to help. In reply to your last post, jec: * We can't reproduce this in the lab... * We see a combination of FIN, FIN-ACK and RST. * We haven't seen any suspicious traceroutes... nothing differentiating suffering clients from non-suffering client. * We don't do

Re: Width of widgets added in Grid

2008-12-17 Thread hezjing
Thank you, Gregor. The problem is resolved by adding two lines as indicated below: Label usernameLabel = new Label(Username); Label passwordLabel = new Label(Password); username = new TextBox(); password = new PasswordTextBox(); password.setWidth(100%);

[gwt-contrib] Re: Any objections to 1.5-final gwt-incubator drop going out this week?

2008-12-17 Thread Emily Crutcher
Being able to compile all the demos automatically is already a big win over the old procedure, so thank you for the work you've already done! Did you see this enhancement request I put in yesterday by any chance? ( http://code.google.com/p/google-web-toolkit-incubator/issues/detail?id=210), that

[gwt-contrib] Re: HashMap keyset behavior

2008-12-17 Thread Scott Blum
You're saying this works in web mode and fails in hosted mode? On Wed, Dec 17, 2008 at 10:14 AM, todd.sei...@gmail.com todd.sei...@gmail.com wrote: In the following code web mode removes the object for key foo1 but hosted mode does not seem to remove it. What is the 'correct' behavior? I

[gwt-contrib] Re: HashMap keyset behavior

2008-12-17 Thread David
According to the JavaDocs of Map.keySet() the change should be reflected to the Map and the other way around. On Wed, Dec 17, 2008 at 4:14 PM, todd.sei...@gmail.com todd.sei...@gmail.com wrote: In the following code web mode removes the object for key foo1 but hosted mode does not seem to

[gwt-contrib] Re: Making GWTShell/HostedMode testable; adding tests to verify command line options

2008-12-17 Thread Scott Blum
TBR you @r4350. Slowpoke. On Fri, Dec 12, 2008 at 7:43 PM, Scott Blum sco...@google.com wrote: Hi Bob, This is related to testing that the WAR design doc is being correctly followed for options. http://code.google.com/p/google-web-toolkit/wiki/WAR_Design_1_6 The change to the main

[gwt-contrib] Re: Any objections to 1.5-final gwt-incubator drop going out this week?

2008-12-17 Thread Arthur Kalmenson
Sounds good to me. -- Arthur Kalmenson On Wed, Dec 17, 2008 at 10:25 AM, Emily Crutcher e...@google.com wrote: For gwt-incubator users who are using svn tip from gwt-1.6 or gwt-trunk, we currently are in a confusing situation of having two different, almost identical event systems: one in

[gwt-contrib] [google-web-toolkit commit] r4351 - releases/1.6/user/src/com/google/gwt/user/tools

2008-12-17 Thread codesite-noreply
Author: sco...@google.com Date: Wed Dec 17 12:23:46 2008 New Revision: 4351 Modified: releases/1.6/user/src/com/google/gwt/user/tools/ApplicationCreator.java releases/1.6/user/src/com/google/gwt/user/tools/Module.gwt.xmlsrc Log: Removing unsupported deploy-to attribute from generated

[gwt-contrib] Any objections to 1.5-final gwt-incubator drop going out this week?

2008-12-17 Thread Emily Crutcher
For gwt-incubator users who are using svn tip from gwt-1.6 or gwt-trunk, we currently are in a confusing situation of having two different, almost identical event systems: one in gwt-incubator itself and one in gwt. In many cases, both are currently in use. Additionally, we have tons of

[gwt-contrib] Re: Any objections to 1.5-final gwt-incubator drop going out this week?

2008-12-17 Thread Isaac Truett
+1. Let me know if I can assist with the transition. On Wed, Dec 17, 2008 at 10:25 AM, Emily Crutcher e...@google.com wrote: For gwt-incubator users who are using svn tip from gwt-1.6 or gwt-trunk, we currently are in a confusing situation of having two different, almost identical event

[gwt-contrib] RR: Introducing DateBox.Format interface

2008-12-17 Thread Emily Crutcher
We have introduced a new interface into DateBox called Format and providing a DefaultFormat class. You can see the code herehttp://gwt-code-reviews.appspot.com/1201. this interface has the following advantages: - As the date parsing is now completely replaceable, our default parser can be

[gwt-contrib] Re: Introducing DateBox.Format

2008-12-17 Thread Ray Ryan
[+ contrib] Rietveld tip: If you give the issue title the same name as your RR thread's subject line, gmail will group them together. For that matter, you could have sent the RR message from Rietveld. rjrjr On Thu, Dec 18, 2008 at 9:41 AM, rj...@google.com wrote: This is big improvement. I

[gwt-contrib] Re: Introducing DateBox.Format

2008-12-17 Thread Ray Ryan
On Thu, Dec 18, 2008 at 9:58 AM, e...@google.com wrote: thanks for the quick review! http://gwt-code-reviews.appspot.com/1201/diff/1/2 File reference/code-museum/src/com/google/gwt/museum/client/defaultmuseum/VisualsForDateBox.java (right):

[gwt-contrib] Re: Introducing DateBox.Format

2008-12-17 Thread Emily Crutcher
cal state. You can add an abandon() method to the format lifecycle, to tell it to clean up its crap. To make sure my formatter doesn't interfere with someone else's styling, change the CSS class name for errors to reflect that the formatter owns it, not the DateBox, e.g.

[gwt-contrib] Re: Introducing DateBox.Format

2008-12-17 Thread Ray Ryan
Who cares? This is happening in response to a user action, and will be undetectable. Why would we flush the ability to have shared formats to avoid parsing the CSS? We're just talking about a call to UIObject#removeStyleDependentName here, right? rjrjr On Thu, Dec 18, 2008 at 11:15 AM, Emily

[gwt-contrib] Re: Introducing DateBox.Format

2008-12-17 Thread Emily Crutcher
Yep, one way you get to store local information about your format state, the other way you get to share a single format object. As I get the feeling you care more about sharing a single format class then I care about allowing the format to have state, so I'll fhmp. Cheers,

[gwt-contrib] Re: Issue 210 - demo index

2008-12-17 Thread Emily Crutcher
That is absolutely awesome! Here are the gen2 widgets using your patch posted on app engine. http://collectionofdemos.appspot.com/demo/index.html When the build.demos target is invoked, is there any reason we should not clear the entire directory first? That would save us from including old demos

[gwt-contrib] Re: Adding ie7 and ie8 user.agent values?

2008-12-17 Thread John Tamplin
On Thu, Dec 18, 2008 at 1:44 AM, BobV b...@google.com wrote: I wanted to float the idea of adding ie7 and ie8 values to the user.agent property in trunk. Given that we collapse permutations with identical rebind results before optimizing, adding them won't cause an immediate increase in the

[gwt-contrib] Re: Adding ie7 and ie8 user.agent values?

2008-12-17 Thread Ray Cromwell
Apropos, I floated an idea a long time ago of property aliasing/subtyping (see here: http://groups.google.com/group/Google-Web-Toolkit-Contributors/browse_thread/thread/8bd9fe0a2676c4a2) I proposed to this solve some problems with introducing new user.agent properties in the presence of

[gwt-contrib] Re: Adding ie7 and ie8 user.agent values?

2008-12-17 Thread BobV
On Thu, Dec 18, 2008 at 6:04 PM, Ray Cromwell cromwell...@gmail.com wrote: I floated an idea a long time ago of property aliasing/subtyping (see here: http://groups.google.com/group/Google-Web-Toolkit-Contributors/browse_thread/thread/8bd9fe0a2676c4a2) I like the aliasing idea, although