Re: How to wait until the response from the server?

2009-01-08 Thread Lothar Kimmeringer
Jag schrieb: I am using GWT forms to do file uploads. In one of my cases i want to validate the name given in the Textbox of the form. To validate the name i have to request the server for the names available already. To validate this inside the FormHandlers OnSubmit method i

Re: Tutorial for web application using GWT,Spring,hibernate

2009-01-08 Thread eggsy84
There's also some further stages of the blog : Part Four - Deployment Setup http://eggsylife.blogspot.com/2008/09/hibernate-spring-google-web-toolkit.html Part Five - Summary of changes required for making it GWT 1.5 http://eggsylife.blogspot.com/2008/11/hibernate-spring-and-gwt-for-gwt-15.html

Re: Get file from server with GWT-RPC

2009-01-08 Thread Daniele
I use a FormField on GWT client and apache commons-io and commons-fileupload for server to write on public/category and fileupload now works fine, but I don't understand why sometimes, image are not loaded into display panel. yesterday image file are located on public/category/etc and all works.

Re: Get file from server with GWT-RPC

2009-01-08 Thread Daniele
I think to use GWT's version of tomcat because application it's not implemented for business world, but only for my thesis. However link it's good to bookmarks! :) 2009/1/7 Nick nickc...@gmail.com: Gregor wrote if you want to create a directory somewhere else on the host machine disk (i.e.

Re: how to get the list box value in gwt

2009-01-08 Thread olivier FRESSE
When you fill your listbox, use the following method : *addItemhttp://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/ui/ListBox.html#addItem%28java.lang.String,%20java.lang.String%29 *(java.lang.String item, java.lang.String value)

Re: Has anyone used Google streetview in GWT?

2009-01-08 Thread Eric Ayers
Thanks for taking a look. There are many new features added to the gwt-google-apis bindings for Maps since the mapitz version, but Streetview is not one of them. I am working with other developers on several other APIs and haven't had time to devote to Maps recently other than bugfixes. I

About serialization types - The type has at least one serializable subclass.

2009-01-08 Thread Sandeep
Hi all, I was reading the Google Webtoolkit Docs about GWT serialisation types. If you want please go through the link bellow http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5; t=DevGuideSerializableTypes The type has at least one serializable subclass.

Re: GWT project creation indefinetly creates folder recursively

2009-01-08 Thread Raj
GWT 1.5.3 the latest version On Jan 5, 6:47 am, Isaac Truett itru...@gmail.com wrote: Raj, What version of GWT are you using? Also, can you describe what you mean by unlimited recursive files in your project? Thanks, Isaac On Sat, Jan 3, 2009 at 3:09 AM, Raj raj...@gmail.com wrote:

Re: GWT project creation indefinetly creates folder recursively

2009-01-08 Thread Raj
Oh goodness, I got some company on this issue, its the latest GWT version and OS is Vista, initially I was confused and thought the script was still running as I was not able to delete the top project folder in C drive but problem is the script had ran once and had created unlimited project name

How to get the String value from project html file to entry point class

2009-01-08 Thread rajesh_ch
Hai All, I have one requirement like, i need to get the string data from project html file to entry point class. like say i project html file is Home.html .From this html file i need to pass string value to entry point class. In entry point , i need to get that value and check whether user

Re: how can we append Text to a TextArea widget

2009-01-08 Thread Sanjith Chungath
Adam,Ah thats too simple. i will try that. Lothar, tnx for all hints. I will chk for log-monitor also. one more query, how can i find the number of lines of available text in a TextArea? -Sanjith. On Thu, Jan 8, 2009 at 1:15 PM, Lothar Kimmeringer j...@kimmeringer.dewrote:

Re: How to get the String value from project html file to entry point class

2009-01-08 Thread olivier FRESSE
This is not very clear. Are you trying to manage user authentication in a GWT application ? If yes, what kind of authentication do you want to manage. Simple web based one, using ACEGI,? 2009/1/8 rajesh_ch chiluveri...@gmail.com Hai All, I have one requirement like, i need to get the

Re: validation framework

2009-01-08 Thread Arthur Kalmenson
Take a look at this framework: http://code.google.com/p/gwt-validation/. I haven't played with it so I can't tell you if it works or not. -- Arthur Kalmenson On Tue, Jan 6, 2009 at 8:52 AM, manish man2k1...@gmail.com wrote: Is there any framework which can validate the user inputs at the

Re: Simulate anchors due bug with IE

2009-01-08 Thread obesga
Well, I've just returned to work ( christmas holidays ); I'll try - Thank you ! On 24 dic 2008, 22:34, todd.sei...@gmail.com todd.sei...@gmail.com wrote: OK, I whipped this up for you. It should get you close to what you want to do. The downside will be that you may have to have a 'visible'

How to enable enter key for a button

2009-01-08 Thread Smith
I have a login page and I need to enable the user to hit the enter key after giving the user name and password. It's not in a FormPanel. The login button has a click listener. Also, if the login fails, how do I bring the cursor back to either the user name or password text boxes.

tree item and focus

2009-01-08 Thread David Durham
Hi all, I've got an issue with a focus listener on a TextBox in a TreeItem. I want to take action when the textbox loses focus. The code I have works perfectly in hosted mode on Linux, but does not work in Firefox after compile/browse. Here's the code: private void newTreeTextBox(final

Re: tree item and focus

2009-01-08 Thread David Durham
snip I've got a debug alert in my onLostFocus method. What happens is I click on an item, it's replaced with a textbox with text selected. I hit press any key, and the lostFocus event is fired. Any ideas? Thanks. The same code works perfectly in konqueror (although a bit clunkier).

Re: How to enable enter key for a button

2009-01-08 Thread David Durham
On Thu, Jan 8, 2009 at 8:44 AM, Smith smitha.kang...@gmail.com wrote: I have a login page and I need to enable the user to hit the enter key after giving the user name and password. It's not in a FormPanel. The login button has a click listener. Also, if the login fails, how do I bring the

Re: Simulate anchors due bug with IE

2009-01-08 Thread obesga
It works great, so I'm in debt with you, than you !! Only a little enhacement on code public Widget createAnchorWidget(String name) throws Exception { if (!anchors.containsKey(name)) { Image im = new Image(pixel.gif); // really should use image bundle

Re: How to enable enter key for a button

2009-01-08 Thread David Durham
Also, if the login fails, how do I bring the cursor back to either the user name or password text boxes. These widgets have a setFocus(true) method. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Re: GWT project creation indefinetly creates folder recursively

2009-01-08 Thread Eric Ayers
Hi Don Raj, This is the first report I've heard of this. Would you mind filing an issue in the GWT issue tracker? http://code.google.com/p/google-web-toolkit/issues/list Besides the usual stuff (GWT version, OS version, shell), if you can include the command lines you are using or any

Bug getting the text background color in RichTextArea under Mozilla

2009-01-08 Thread Luis Fernando Planella Gonzalez
HI. I've raised http://code.google.com/p/google-web-toolkit/issues/detail?id=3262 which records that RichTextAreaImplMozilla overrides the setBackColor(), as it uses 'HiliteColor', not 'BackColor' command, but it does not overrides getBackColor() with the same logic, making it impossible to

Re: Compiling a single Java class to a plain JavaScript file

2009-01-08 Thread Ian Petersen
On Wed, Jan 7, 2009 at 4:26 PM, rapodaca rich.apod...@gmail.com wrote: On Jan 7, 12:20 am, Reinier Zwitserloot reini...@gmail.com wrote: What you want can't really be done. Java isn't javascript. Take your example just to illustrate the problem here: How would that even translate to

Running code on server at startup

2009-01-08 Thread Brad Larson
Hello friends, What is the best way to run code on my server when my servlet is loaded? I'd like to do some database initialization work which the servlet is expecting. I could use a static variable in the servlet to see if it is being ran for the first time, and do the init there, but that

Calling GWT RPC servlet outside of a client

2009-01-08 Thread logicpeters
Hello, I'm trying to performance test my GWT app, and simulate the load of multiple users (1000) hitting the application at once. I've tried HtmlUnit.. but didn't have any luck -- it choked on the javascript. So, instead, I'm going to simulate the RPC calls of those users from a test class. My

GWT Remember username and password

2009-01-08 Thread Ice13ill
I'm trying to remember the username and password in a gwt login applicaion. I found this: 1. adding a textbox and passwordbox in the html file input type=text id=1 name=text/ input type=password id=2 name=password/ (i read that if i add those in the html file, the browser will automatically

Displaying a dynamic SSL site seal

2009-01-08 Thread bryanb
Hi, I'm wanting to display an SSL site seal which is a this bit of Javascript: script language=JavaScript src=https://seal.XRamp.com/seal.asp? type=G/script Normally, you just put this on your HTML page where you want it to display and all is good. I really want to display it in a Dialog, but

Re: Running code on server at startup

2009-01-08 Thread Isaac Truett
Override GenericServlet.init(). On Thu, Jan 8, 2009 at 12:20 PM, Brad Larson bklar...@gmail.com wrote: Hello friends, What is the best way to run code on my server when my servlet is loaded? I'd like to do some database initialization work which the servlet is expecting. I could use a

Re: GWTShell and facelet.

2009-01-08 Thread olivier
Ok, after a long time with this issue not solved I've finally been able to get rid of it :-) I post here the explanation, just in case someone googles the same problem. In fact, it's only an XHTML issue. * When a request is made from firefox the Accept parameter of the header is this one :

Re: GWT Remember username and password

2009-01-08 Thread todd.sei...@gmail.com
I had tried something similar only I was trying to move my textboxes into a popup after the GWT app loaded. Not recalling the exact error message, I can tell you that it was a problem with GWT not having created the elements itself. Add a form to your HTML and wrap it. The addFormHandler will

Re: tree item and focus

2009-01-08 Thread todd.sei...@gmail.com
Whenever I see problems like this I try deferring the focus and/or listener registration from the event which creates a new widget like this. The Tree implementation includes some fun internals which change focus on things to ensure visibility and handle keyboard input. Example: public void

Re: about GWT compiler performance

2009-01-08 Thread Sumit Chandel
Hi surfer, In addition to the tips suggested here, the new parallel permutation compilation mode available in the SVN trunk has also shown to drastically reduce compilation time. It will be available in the GWT 1.6 release. You can invoke the multi-threaded compilation mode by passing in the

Re: Running code on server at startup

2009-01-08 Thread Brad Larson
Thanks Isaac! What if I want to run some initialization on the servlet from another class? I am working on implementing a communication protocol on top of RPC. I will send messages over RPC which will be handled by message handlers which register with my library/servlet on the server. I'm

Re: getting java.sql.Connection error

2009-01-08 Thread Pham Tran Quoc Viet
Thanks Lothar. I'll give it a try tonight and see what happens. Thanks again. Viet Pham On Wed, Jan 7, 2009 at 11:55 PM, Lothar Kimmeringer j...@kimmeringer.dewrote: phamtranquocviet schrieb: public boolean isDuplicateSsn(String ssn) throws SQLException You can't throw a

Re: Need opinion on design idea

2009-01-08 Thread todd.sei...@gmail.com
This sounds like a unique and workable answer. If your cookie size does not exceed 4k you should be fine. The only thing I don't know is how the browsers will handle a statically named cookie with asynchronous request. Even though Javascript (GWT) is single threaded the browser is not. Try to

Re: Compiling a single Java class to a plain JavaScript file

2009-01-08 Thread rapodaca
On Jan 8, 8:50 am, Ian Petersen ispet...@gmail.com wrote: You _might_ be able to get what you want with Ray Cromwell's Exporter.  I forget where you can find it, but it's available on the web somewhere.  It might be hosted as a Google Code project.  You could probably find it by searching

CONTRIBUTION - Preventing Default Text Selection During DnD Operations - Use Application Event Previewer

2009-01-08 Thread melody
Problem/Issue I need to be able to drag objects (widgets or other non widget objects) from one window to another within the same application without facing text selection problems. For instance if I have a dialog box containing a list of fields that I want included on a spreadsheet grid, I would

Re: Calling GWT RPC servlet outside of a client

2009-01-08 Thread todd.sei...@gmail.com
Try 'saving' some requests from onBeforeRequestDeserialized(String serializedRequest). This will be your POST body. Make sure to set your content type to text/x-gwt-rpc and encoding to UTF-8. I am not familiar with HttpClient so I have no suggestion on how to use it with this. On Jan 8, 11:36 

GWT RPC capability outside of a war

2009-01-08 Thread Mike B
I'm trying to use GWT inside of a Clearspace (jivesoftware.com) plugin. The plugin specs don't seem to allow any servlet-like mapping and being a plugin, I do not have access to the web.xml file for the clearspace war (well, I do, but seems overly hacky). Is there a way for my client code to

Re: Calling GWT RPC servlet outside of a client

2009-01-08 Thread melody
I have used JMeter and it tests the load pretty well. It creates the as many user threads as you want and then you run the load test. You can also record a simulation of the user interacting with the application. You may wanna try that. --~--~-~--~~~---~--~~

Re: Unable to run GWT + Flash on 64bit Linux

2009-01-08 Thread googelybear
update: I copied the 32bit version of the libflashplayer.so to ~/.mozilla/plugins but it still doesn't work. Does anyone have this working? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Seesay

2009-01-08 Thread Ram
Website: http://www.seesay.com Purpose: Seesay is a place to read, share and discuss interesting articles privately with friends Status: Live We chose GWT for what it is - Code in Java and compile into high performance, native clients for top browsers. Java 1.5 support was a very welcome

Re: Unable to run GWT + Flash on 64bit Linux

2009-01-08 Thread googelybear
update: I copied the 32bit version of the libflashplayer.so to ~/.mozilla/plugins but it still no luck :-( Would it work if I was able to somehow install a 32bit version of firefox? Does the hosted mode browser use firefox? --~--~-~--~~~---~--~~ You received this

JDBC postrges under gwt

2009-01-08 Thread Aka ray
Hello everybody. Im new in using gwt. Almost everything is working but when I compile my project to run it on an external Browser, I get a ClassnotFoundException when I try to connect to the database ( jdbc: postgres) It works perfectly in hosted mode. Where do I have to copy / link the file

KeyboardListener help

2009-01-08 Thread Alfred S
This might seem like a silly question, but I've been unable to find an answer... Where do I attach a KeyboardListener that would affect either: -A DialogBox [pop up a dialog box, press a button, trigger an event anywhere in the pop up] -The RootPanel [I press F2 and it mimics a clicking a

java.sql.Date.valueOf(2009-01-08) throws IlegalArgumentException

2009-01-08 Thread Shawn Pearce
Has anyone else noticed that java.sql.Date and java.sql.Timestamp throw IAE if given a date like today, 2009-01-08? Near as I can tell from the emul source, this is due to Number.__decodeNumberString deciding that a string starting with 0 (so 08) is octal, setting the radix to 8, and the parse

Re: Calling GWT RPC servlet outside of a client

2009-01-08 Thread logicpeters
Thanks -- I haven't tried JMeter, but I'll look into that. One extra layer of complexity that I have is that I'm using GWT-EXT, so the js is not as simple as GWT. Meanwhile, I've been able to craft a solution by extending my RPC servlet and overriding the doGet method. Since GWT-RPC calls are

Silent Installation of

2009-01-08 Thread sideoneci...@gmail.com
I am looking for some information regarding the ability to complete a silent installation of Google Web Toolkit v1.3. I have looked for documentation or information regarding how to do this, but have not found any information. Could you please provide me with some information about how to

Re: Silent Installation of

2009-01-08 Thread Ian Petersen
On Thu, Jan 8, 2009 at 12:26 PM, sideoneci...@gmail.com sideoneci...@gmail.com wrote: A silent installation or unattended installation is needed so user interaction is not needed in order to install the product. Which users are you thinking of? If you're talking about developers who build

Can one widget be displayed in multiple locations?

2009-01-08 Thread steve souza
I have tabs where I would like a Widget (FlexTable) to show up in all of my tabs for informational purposes. However, when I add the widget to each tab it only is displayed in the last tab that I assign the reference too. Can each widget only be displayed in one panel at a time? If so, is

GWT vs. Adobe Flex for UI development when J2EE/Spring is used for middle tier/server programming

2009-01-08 Thread j2ee_nyc
Hi, I am a J2EE developer. I am looking to learn and apply the AJAX technology at work and gain a skill that will help me in my career going forward. I am trying to understand the level of maturity of the GWT framework for the entrprise development and how it compares with Adobe Flex framework

Re: Can one widget be displayed in multiple locations?

2009-01-08 Thread Isaac Truett
A DOM element can only be in one place at a time. You'll need multiple copies of your table, or move the table every time the tab changes. On Thu, Jan 8, 2009 at 4:33 PM, steve souza jamon...@gmail.com wrote: I have tabs where I would like a Widget (FlexTable) to show up in all of my tabs for

How to get the width of a cell in a HTML table/Grid

2009-01-08 Thread sssmack
The width of a widget contained it a cell can be gotten, but how is the width of a cell or column gotten? Let's say all cells of a Grid contain text. How is the width of a column or cell gotten? Thanks --~--~-~--~~~---~--~~ You received this message because you

Re: Help with the connection

2009-01-08 Thread Ziyod
Hi Jully, Follow this instructions if you still run into the same problems post the error messages! http://code.google.com/webtoolkit/gettingstarted.html On Jan 7, 9:37 am, Jully tina.hak...@gmail.com wrote: Hello, Ziyod. I am in the location of GWT, then /samples, then, whatever file I

Re: How to get the width of a cell in a HTML table/Grid

2009-01-08 Thread Joe Cole
See: UIObject.getOffsetWidth: return DOM.getElementPropertyInt(getElement(), offsetWidth); Just get your td element (do it yourself from the table or yourwidget.getParent().getElement()) and use: return DOM.getElementPropertyInt(element, offsetWidth); On Jan 9, 12:59 pm, sssmack

Re: What gwt method and/or event indicates that the object has been rendered?

2009-01-08 Thread sssmack
Thank you. Makes sense. On Dec 11 2008, 8:41 am, Jason Essington jason.essing...@gmail.com wrote: Thomas is correct here. onAttach() performs some very important   functions related to widget behavior, so if you are not careful (to   call super.onAttach()) then you would end up with broken

Re: Displaying a dynamic SSL site seal

2009-01-08 Thread Cameron Braid
One easy workaround is to use an IFRAME in GWT which shows a URL on your server that includes that script code. All you have to do is match up the frame's width and height to the seal's dimensions. example : http://yourserver/siteSeal.html script language=JavaScript

Fresh install, blank page in hosted mode

2009-01-08 Thread rbrich
Hello all, I am running Ubuntu 8.10 with Eclipse 3.2 and GWT 1.5.3. I just installed Eclipse and GWT. I created a new project using projectCreator and applicationCreator, then imported into Eclipse. It has some Hello Word code already, so I tried to launch. The only message in the shell window

Re: Fresh install, blank page in hosted mode

2009-01-08 Thread jian li
the JDK version? 2009/1/9 rbrich rob.brich...@gmail.com Hello all, I am running Ubuntu 8.10 with Eclipse 3.2 and GWT 1.5.3. I just installed Eclipse and GWT. I created a new project using projectCreator and applicationCreator, then imported into Eclipse. It has some Hello Word code

Re: GWT StockWatcher Tutorial

2009-01-08 Thread Sumit Chandel
Hi Glenn, Did you make sure that you've compiled the servlet to a .class file and added it (or the bin directory) to your GWTShellServlet process? Hope that helps, -Sumit Chandel On Tue, Jan 6, 2009 at 6:31 AM, Glenn glenn...@gmail.com wrote: Hi All, I am working through the GWT stock

Re: GWT StockWatcher Tutorial

2009-01-08 Thread Sumit Chandel
*GWTShell process, rather. Sorry for the confusion. Cheers, -Sumit Chandel On Thu, Jan 8, 2009 at 5:45 PM, Sumit Chandel sumitchan...@google.comwrote: Hi Glenn, Did you make sure that you've compiled the servlet to a .class file and added it (or the bin directory) to your GWTShellServlet

Gwt-ext Designer Netbeans

2009-01-08 Thread heru
hi all, i'm newbie in gwt. i try to developing web app with gwt, and my problem is hard to design user interface. i'm using netbeans 6.5 with GWT 1.5, Gwt-ext 2, mySql and Ibatis 2.3.1. thanx for your reply. best regards, Heru. --~--~-~--~~~---~--~~ You received

Re: How to get the String value from project html file to entry point class

2009-01-08 Thread rajesh_ch
Hai,Thanks for quick reply. i am trying to call one of the GWT method from outside application. Like , i have to check whether user logged in or not. i written a method to check whether user logged in or not,but i need to call this method from outside my gwt application. is it possible to

Re: How to get the String value from project html file to entry point class

2009-01-08 Thread olivier FRESSE
Yes you can : http://code.google.com/intl/fr/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=DevGuideJavaFromJavaScript 2009/1/9 rajesh_ch chiluveri...@gmail.com Hai,Thanks for quick reply. i am trying to call one of the GWT method from outside application. Like ,

Re: getting java.sql.Connection error

2009-01-08 Thread Pham Tran Quoc Viet
Lothar, Because I had isDuplicateSsn (on server) throw SQLException, I was forced to throw the same exception on RegistrationService, which is on client, which does not understand server language. That was the problem. I fixed the code to catch SQLException instead of throwing it. This works for

Re: Fresh install, blank page in hosted mode

2009-01-08 Thread rbrich
I have sun-java6 jdk installed. On Jan 8, 8:32 pm, jian li zhwulov...@gmail.com wrote: the JDK version? 2009/1/9 rbrich rob.brich...@gmail.com Hello all, I am running Ubuntu 8.10 with Eclipse 3.2 and GWT 1.5.3. I just installed Eclipse and GWT. I created a new project using

Re: Can one widget be displayed in multiple locations?

2009-01-08 Thread steve souza
Thanks for the info. I will try the work around you mentioned! On Jan 8, 4:56 pm, Isaac Truett itru...@gmail.com wrote: A DOM element can only be in one place at a time. You'll need multiple copies of your table, or move the table every time the tab changes. On Thu, Jan 8, 2009 at 4:33 PM,

Re: getting java.sql.Connection error

2009-01-08 Thread Pham Tran Quoc Viet
Lothar,By the way, I could not find RemoteServiceException in GWT doc. So, I assume it's your custom exception, right? Thanks. Viet Pham On Thu, Jan 8, 2009 at 9:10 PM, Pham Tran Quoc Viet phamtranquocv...@gmail.com wrote: Lothar, Because I had isDuplicateSsn (on server) throw SQLException,

Multiple web pages how-to

2009-01-08 Thread Sahil Dave
Hi all, i am new to GWT. I have gone thru the gwt's online tutorial and have understood how everything works. But 1 thing that i am not able to understand is, if i have multiple interlinked pages in my web application then, do i need to create multiple classes and do all those classes need to

Re: How to get the String value from project html file to entry point class

2009-01-08 Thread rajesh_ch
Thanks for reply. My Entry point class : package com.mantra.draw2d.Home.client; import com.google.gwt.core.client.EntryPoint; import com.google.gwt.user.client.Cookies; import com.google.gwt.user.client.Element; import com.google.gwt.user.client.Window; import

Support for server side redirect

2009-01-08 Thread krishna
Hi All, Does GWT RPC honor server side redirects? If no, can it be enhanced to support server side redirects? Regards, Krishna --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: Gwt-ext Designer Netbeans

2009-01-08 Thread alex.d
The only GUI-Designer you'll find for GWT is GWT-Designer from Instantiations but it's Eclipse - not Netbeans. It also can partially GWT-Ext and they are planing to present full gwt-ext support shortly. On 9 Jan., 04:57, heru heru.pray...@gmail.com wrote: hi all, i'm newbie in gwt. i try to

Cannot find resource in the public path

2009-01-08 Thread Dev
Hi, I am new to GWT-Ext When doing the sample program and runing the shell. Getting error message as Cannot find resource in the public path of html. Can any one please help to resolve the same. --~--~-~--~~~---~--~~ You received this message because you are

Re: Wiki rendering in GWT

2009-01-08 Thread takacsot
I Agree that that it would be s usefull native feature for GWT. --~--~-~--~~~---~--~~ 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

[gwt-contrib] Re: Panel loading one by one

2009-01-08 Thread Arthur Kalmenson
Ravindra, you'll have better luck asking in the GWT Group (http://groups.google.com/group/Google-Web-Toolkit). This group is specifically for discussion regarding the development of GWT, not for general questions. -- Arthur Kalmenson On Wed, Jan 7, 2009 at 8:03 AM, kundlaravin...@gmail.com

[gwt-contrib] [google-web-toolkit commit] r4406 - releases/1.6/user/src/com/google/gwt/user/client/ui

2009-01-08 Thread codesite-noreply
Author: e...@google.com Date: Thu Jan 8 06:53:45 2009 New Revision: 4406 Modified: releases/1.6/user/src/com/google/gwt/user/client/ui/KeyboardListener.java Log: Fixes issue 3260 by added more deprecation doc to keyboard listener Review by:jlabanca Modified:

[gwt-contrib] [google-web-toolkit commit] r4407 - releases/1.6/tools/api-checker/config

2009-01-08 Thread codesite-noreply
Author: amitman...@google.com Date: Thu Jan 8 09:11:01 2009 New Revision: 4407 Modified: releases/1.6/tools/api-checker/config/gwt15_16userApi.conf Log: (i) Prior to this patch, all files in the junit and benchmarks modules were excluded. This patch pulls in 38 of those files that are

[gwt-contrib] [google-web-toolkit commit] r4408 - releases/1.6/reference/code-museum/src/com/google/gwt/museum/client/d efaultmuseum

2009-01-08 Thread codesite-noreply
Author: e...@google.com Date: Thu Jan 8 10:46:02 2009 New Revision: 4408 Modified: releases/1.6/reference/code-museum/src/com/google/gwt/museum/client/defaultmuseum/VisualsForEventsFiring.java Log: Removing 1.6 override tag Pair programming with jlabanca Modified:

[gwt-contrib] Re: RR: use jarjar to rename GWT's internal dependencies

2009-01-08 Thread Freeland Abbott
Tools patch: - nitpick (nonblocking): None of the other tools have an analog to lib/tonicsystems/README.google. And I hate the filename. Suggestions: 1. Why not just README (or README.txt)? 2. If the point is to document where we found stuff, maybe something like

[gwt-contrib] Re: RR: use jarjar to rename GWT's internal dependencies

2009-01-08 Thread John Tamplin
On Thu, Jan 8, 2009 at 2:23 PM, Freeland Abbott gwt.team.fabb...@gmail.comwrote: Tools patch: - nitpick (nonblocking): None of the other tools have an analog to lib/tonicsystems/README.google. And I hate the filename. Suggestions: 1. Why not just README (or README.txt)?

[gwt-contrib] Re: RR: use jarjar to rename GWT's internal dependencies

2009-01-08 Thread Freeland Abbott
But in this case we haven't changed it... On Thu, Jan 8, 2009 at 2:37 PM, John Tamplin j...@google.com wrote: On Thu, Jan 8, 2009 at 2:23 PM, Freeland Abbott gwt.team.fabb...@gmail.com wrote: Tools patch: - nitpick (nonblocking): None of the other tools have an analog to

[gwt-contrib] Re: 1.6 date picker question

2009-01-08 Thread Emily Crutcher
By the way, now that gwt-incubator is sourced against 1.6, if you can retarget your DropDownDatePicker for 1.6 and the com.google.gwt.gen2.picker package I'd love to review it. On Fri, Dec 5, 2008 at 1:08 AM, Emily Crutcher e...@google.com wrote: Also, the code should be reviewed before

[gwt-contrib] Re: RR: use jarjar to rename GWT's internal dependencies

2009-01-08 Thread John Tamplin
On Thu, Jan 8, 2009 at 2:42 PM, Freeland Abbott gwt.team.fabb...@gmail.comwrote: But in this case we haven't changed it... If the jar file is totally unmodified from the original, I agree no README is required. -- John A. Tamplin Software Engineer (GWT), Google

[gwt-contrib] Re: RR: use jarjar to rename GWT's internal dependencies

2009-01-08 Thread Lex Spoon
Thanks, Freeland! On Thu, Jan 8, 2009 at 2:23 PM, Freeland Abbott gwt.team.fabb...@gmail.com wrote: Tools patch: nitpick (nonblocking): None of the other tools have an analog to lib/tonicsystems/README.google. And I hate the filename. Suggestions: Why not just README (or README.txt)? If

[gwt-contrib] Re: RR: use jarjar to rename GWT's internal dependencies

2009-01-08 Thread Freeland Abbott
Not explicit in Lex's message, I LGTM'ed his changes based on IM discussions. On Thu, Jan 8, 2009 at 2:56 PM, Lex Spoon sp...@google.com wrote: Thanks, Freeland! On Thu, Jan 8, 2009 at 2:23 PM, Freeland Abbott gwt.team.fabb...@gmail.com wrote: Tools patch: nitpick (nonblocking): None

[gwt-contrib] [google-web-toolkit commit] r4409 - releases/1.6/user/src/com/google/gwt/user/client/ui

2009-01-08 Thread codesite-noreply
Author: e...@google.com Date: Thu Jan 8 10:52:10 2009 New Revision: 4409 Modified: releases/1.6/user/src/com/google/gwt/user/client/ui/Widget.java Log: Fixes issue 3263 by added protected delegateEvent method to widget. Pair programed with jlabanca Modified:

[gwt-contrib] Re: 1.6 date picker question

2009-01-08 Thread Isaac Truett
Thank you for the reminder, Emily! I'll get you a patch as soon as I have a few minutes to spare. On Thu, Jan 8, 2009 at 2:44 PM, Emily Crutcher e...@google.com wrote: By the way, now that gwt-incubator is sourced against 1.6, if you can retarget your DropDownDatePicker for 1.6 and the

[gwt-contrib] [google-web-toolkit commit] r4412 - in releases/1.6: reference/code-museum/src/com/google/gwt/museum/client/defaultmuseum use...

2009-01-08 Thread codesite-noreply
Author: jlaba...@google.com Date: Thu Jan 8 13:14:49 2009 New Revision: 4412 Added: releases/1.6/user/test/com/google/gwt/user/client/ui/SuggestBoxTest.java (contents, props changed) Modified:

[gwt-contrib] [google-web-toolkit commit] r4411 - in releases/1.6/user/src/com/google/gwt/user/client: . ui

2009-01-08 Thread codesite-noreply
Author: e...@google.com Date: Thu Jan 8 13:09:42 2009 New Revision: 4411 Modified: releases/1.6/user/src/com/google/gwt/user/client/History.java releases/1.6/user/src/com/google/gwt/user/client/HistoryListener.java releases/1.6/user/src/com/google/gwt/user/client/Window.java

[gwt-contrib] [google-web-toolkit commit] r4413 - releases/1.6/user/src/com/google/gwt/user/client/ui

2009-01-08 Thread codesite-noreply
Author: e...@google.com Date: Thu Jan 8 13:27:24 2009 New Revision: 4413 Added: releases/1.6/user/src/com/google/gwt/user/client/ui/Focusable.java Modified: releases/1.6/user/src/com/google/gwt/user/client/ui/HasFocus.java

[gwt-contrib] Prosposed API Change - Deprecate TextBoxBase#setKey() and DOM#eventSetKeyCode()

2009-01-08 Thread John LaBanca
Contributors - Description: = I proposed that we deprecate DOM#eventSetKeyCode() and TextBoxBase#setKey() because they only work in IE and the same functionality would be difficult to simulate on other browsers. These methods allow you to change the keyCode on keyboard events, which

[gwt-contrib] Re: Prosposed API Change - Deprecate TextBoxBase#setKey() and DOM#eventSetKeyCode()

2009-01-08 Thread Emily Crutcher
+1 from me. On Thu, Jan 8, 2009 at 4:52 PM, John LaBanca jlaba...@google.com wrote: Contributors - Description: = I proposed that we deprecate DOM#eventSetKeyCode() and TextBoxBase#setKey() because they only work in IE and the same functionality would be difficult to simulate on

[gwt-contrib] Re: 1.6 date picker question

2009-01-08 Thread Arthur Kalmenson
I look forward to it! -- Arthur Kalmenson On Thu, Jan 8, 2009 at 3:40 PM, Isaac Truett itru...@gmail.com wrote: Thank you for the reminder, Emily! I'll get you a patch as soon as I have a few minutes to spare. On Thu, Jan 8, 2009 at 2:44 PM, Emily Crutcher e...@google.com wrote: By the

[gwt-contrib] Incubator review request: DropDownDatePicker

2009-01-08 Thread Isaac Truett
Emily, Here's my DropDownDatePicker candidate for incubator. A few issues that I am aware of: 1. Use of deprecated API. This is coming from CustomListBox and will be resolved as things move over to the 1.6 events. 2. The size of the popup. It's too big in IE, too small in Chrome, and in

[gwt-contrib] [google-web-toolkit commit] r4415 - in trunk/dev: core/src/com/google/gwt/core/linker oophm/overlay/com/google/gwt/core/ext/l...

2009-01-08 Thread codesite-noreply
Author: j...@google.com Date: Thu Jan 8 16:13:53 2009 New Revision: 4415 Modified: trunk/dev/core/src/com/google/gwt/core/linker/IFrameTemplate.js trunk/dev/oophm/overlay/com/google/gwt/core/ext/linker/impl/hosted.html trunk/dev/oophm/src/com/google/gwt/dev/shell/JsValueOOPHM.java

[gwt-contrib] [google-web-toolkit commit] r4416 - releases/1.6/dev/core/src/com/google/gwt/dev

2009-01-08 Thread codesite-noreply
Author: sco...@google.com Date: Thu Jan 8 16:16:18 2009 New Revision: 4416 Modified: releases/1.6/dev/core/src/com/google/gwt/dev/HostedMode.java releases/1.6/dev/core/src/com/google/gwt/dev/HostedModeBase.java Log: - Keep the log window up until the user closes it, otherwise they

[gwt-contrib] [google-web-toolkit commit] r4417 - in releases/1.6: dev/core/src/com/google/gwt/dev/shell user/src/com/google/gwt/user/rebin...

2009-01-08 Thread codesite-noreply
Author: sco...@google.com Date: Thu Jan 8 16:18:32 2009 New Revision: 4417 Modified: releases/1.6/dev/core/src/com/google/gwt/dev/shell/CompilingClassLoader.java releases/1.6/user/src/com/google/gwt/user/rebind/rpc/SerializableTypeOracleBuilder.java Log: Remove unused java package