Re: RequestBuilder + POST + multipart/form-data

2008-10-23 Thread Lothar Kimmeringer
Alex Rice schrieb: Can anyone confirm whether RequestBuilder actually works for POSTs setRequestData() and with multipart/form-data content type? I can't confirm it for RequestBuilder, but can do it for FormPanel, because there are constants that can be used to set the encoding to

Re: RPC fails under Tomcat

2008-10-23 Thread Lothar Kimmeringer
Barry schrieb: 1) What log would it be referring to?? The log Tomcat uses for logging messages and error. I don't know Tomcat in detail but would expect it in a directory called logs. 2) How does one debug server-side code running under Tomcat?? Is Eclipse any help here?? If the Remote

Re: MySQl and GWT?!

2008-10-23 Thread GWBasic
You can only do what you can do from JavaScript. This means that GWT can only open connections to the web server that's serving it. You will need to use whatever technology that you web server is running in order to access MySQL. This means that you'd need to write some kind of data access

Re: splitting client, RPC and server in different eclipse projects?

2008-10-23 Thread Tom Janssens
http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/887677fd133b5e0b On 22/10/2008, TomJanssens [EMAIL PROTECTED] wrote: Hello all, I am trying to split the client, RPC and server code in different eclipse projects. Is this possible? Before I splitted the code it was

Re: Suggestion: GWT port to Desktop

2008-10-23 Thread Jaco Van Staden
From what I can see this runs in Python. Is there perhaps one that allows your GWT code to run with the Java language? As for the mobile applications... I was wondering whether there would be a port for GWT to Android or some kind of toolkit which compile to both Android and GWT? On Thu, Oct

Re: Suggestion: GWT port to Desktop

2008-10-23 Thread Guy Rouillier
Jaco Van Staden wrote: From what I can see this runs in Python. Is there perhaps one that allows your GWT code to run with the Java language? No, that's an idea the original poster was suggesting. Purely hypothetical at this point. As for the mobile applications... I was wondering

Can I call GWT app. from Struts app. and vice versa ?

2008-10-23 Thread pepgrifell
hi, we are migrating our web app. to GWT but it's a big app. so we will migrate it by modules. In the Struts app. we have a toolbar with buttons that allows to access different modules of the app. We would like to migrate module a module. Let's say I have buttonA (module A), button B (module B)

Re: Image LoadListener: onError not called for HttpServletResponse.SC_NOT_FOUND

2008-10-23 Thread Martin Trummer
this happens in hosted mode and webmode (FF3.0.3) On Oct 22, 7:00 pm, Martin Trummer [EMAIL PROTECTED] wrote: hi, I have an imageServlet that returns HttpServletResponse.SC_NOT_FOUND if it cannot find the requested image. On the client side I use an Image element with an attached

Re: Calling a web service which uses JSON?

2008-10-23 Thread eggsy84
wonder if our comments helped?!! On Oct 22, 2:42 pm, eggsy84 [EMAIL PROTECTED] wrote: If the server is on a different location you can however use JSONP to perform the request. I have wrote a quick tutorial on this in a J2EE container but the client side code will still be the same:

Re: gwt + spring ?

2008-10-23 Thread Waleed Zedan
Hi, Bootstraping the HttpInvoker in the client side is not possible using spring context. You can check this approach, it may help you. http://javaquickly.wordpress.com/2008/10/17/springfying-gwt/ wish this helps. thanks, On Mon, Oct 20, 2008 at 12:25 PM, Yonatan Maman [EMAIL PROTECTED]

Re: Bean Serialization Problem: com.google.gwt.user.client.rpc.SerializationException: Type 'com.dg.common.client.beans.DGUser' was not assignable to 'com.google.gwt.user.client.rpc.IsSerializable'

2008-10-23 Thread [EMAIL PROTECTED]
Hi May we know what was causing the difference in file-names? I am having a similar exception G. On Sep 22, 1:06 pm, ping2ravi [EMAIL PROTECTED] wrote: i found the problem why file names were different. Thanks On Sep 22, 11:18 am, ping2ravi [EMAIL PROTECTED] wrote: Hi All, My

Re: Production and test source

2008-10-23 Thread obesga
Yes walden , it works as expeceted ( in GWT 1.5.2 ) It launchs a warning on GWT Shell, but it really works - as servlet is in /test/src If I don't add the second source line, an ClassNotFoundException is thrown when GWTShell stars I was also thinking about deploying proyect into 3 differente

Some css entries lost after compling

2008-10-23 Thread Alex Luya
I have a css for FlexTable as following: .emc-powertable td { cursor:pointer; border-color:blue; border-style:solid; border-width:1px 1px 1px 1px; text-align: left; } after complied,in firefox,I can not see the border,and in firebug,I found this css become: .emc-powertable

Re: RequestCallBack onResponseReceived, returnValue

2008-10-23 Thread garden
Okay it is so simple as i thought. Define the CallBack in the Main and give them the method. Greetings garden On 22 Okt., 12:04, garden [EMAIL PROTECTED] wrote: Hello everybody I've a little problem, and I think I have a big Fallacies. I have my main class, let's call it main and I have a

PureMVC

2008-10-23 Thread marcelo melo
Hi, is anyone using PureMVC for Java / GWT? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe

Re: PureMVC

2008-10-23 Thread Flemming Boller
Yes I am. I think is it rather nice little MVC implementation, which has made it more easy for us to make components talk to each other in a loosely coupled way. Minus is however, that it easy also to create a spider web of notifications that is hard to overview. But common sense and keep it

Re: layout problem, panel size ignores setCellHeight(50%) ?

2008-10-23 Thread walden
...or did you mean GXT and gwt-ext? Confusing, amen. On Oct 22, 3:12 pm, JohnMudd [EMAIL PROTECTED] wrote: Sorry, this is really confusing.  I mean Ext GWT and GWT-Ext.http://www.ongwt.com/post/2008/04/22/MyGWT-is-dead-Long-live-Ext-GWT On Oct 22, 3:09 pm, JohnMudd [EMAIL PROTECTED] wrote:

Re: splitting client, RPC and server in different eclipse projects?

2008-10-23 Thread walden
a third point: * If you change everything at once, then it's polynomially harder to figure out which change(s) caused the failure On Oct 22, 6:02 pm, olivier nouguier [EMAIL PROTECTED] wrote: 2 points: * If you've split your source in 2 part you must now have 2 module.gwt.xml, one (Lib)

Re: PureMVC

2008-10-23 Thread marcelo melo
Totally agree with you... Simplicity is key most of the times (at least it should :) ). I have one question that is really annoying me. Having used it (puremv) with Flex, it is easy to fire an event at the View and associate it with a method at the Mediator. But, how to deal with it on GWT? I am

Re: internationalization java file in one place and property files in another jar

2008-10-23 Thread Thomas Broyer
On 23 oct, 07:23, zujee [EMAIL PROTECTED] wrote: I have so  many property files and corresponding java file which extending messages. So I have planned to put all these proerty files in one jar and put the corresponding java file which extending messages in local folder, where i can set the

Re: Announcing GWT 1.5.3

2008-10-23 Thread Brian
Hi Sumit, Thanks for the replies. Glad to know that about -whitelist, makes sense. Basically, I've just gone back to 1.5.2. I can work quite well with this, being able to hit other ports while still on localhost (or even better, modifying my hosts file so it looks like I'm coming from whatever

onTabSelected change the TabBar widget

2008-10-23 Thread ArunDhaJ
Hi All, On selecting a TabBar how to change the Widget? Actually I'm having 3 sets of picture to show the TabBar in selected mode and another 3 sets of picture for TabBar in unselected mode. Upon loading I'm creating an HTML widget with tab_left, tab_center and tab_right image and repeating

Possible to get an element's propertys from a container iframe?

2008-10-23 Thread darkflame
If my GWT app is in a container iframe, is it possible to get propertys of elements from outside that frame? I tried a simple; DOM.getElementById(testid).getInnerText()) But the app couldnt find it. Is there any way for the GWT app to look outside its container? Or to even tell if it has

Re: RPC Image

2008-10-23 Thread Jim Freeze
Hi On Thu, Oct 23, 2008 at 9:54 AM, Jason Essington [EMAIL PROTECTED] wrote: Although you could certainly return the bytes of an image via RPC, once you have them on the client side, there is no way to actually turn those bytes into an image (or even save those bytes to the file system).

Re: GWT 1.5.3 zip files are corrupt for windows and linux

2008-10-23 Thread Jason Essington
I've seen that happen, the download stopped before you received the whole file. if the file on your filesystem is smaller than what Google claims the file should be, then you don't have a complete archive, and no amount of repairing is going to help you unzip it. Just try downloading it

Re: RPC Image

2008-10-23 Thread Jason Essington
That's one solution, with the following caveats: 1) it's fine if you don't plan to support IE 2) base64 adds 33% to the actual bytecount 3) URIs are limited in size (different platforms tend to have different limits) 4) Data URIs don't benefit from browser caching. -jason On Oct 23, 2008, at

Re: Getting User Credential from IE

2008-10-23 Thread Chad
Julian, I did that here this way. I used jcifs (1.2.13 to be exact). You can find it at this website: http://jcifs.samba.org/ You'll need to add a filter to your web.xml file to specify your domain controller. An example (the file I created) can be seen here:

TriggerAction

2008-10-23 Thread Ton Carvalho
Hello, everyone, I have a problem here and I believe that the class TriggerAction help me, but I managed to use it, someone can help me have some example? thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Listener for moving split panel?

2008-10-23 Thread gregor
Hi Shaselai, Assuming your goal is to fix the size of the AbsolutePanel, you could try replacing HorizontalSplitPanel with HorizontalPanel. Then: absolutePanel.setSize(x_px, y_px); // you could derive these values from Window.getClientWidth() etc // add your VSP and AP to the HP

Unable to run a separate module in hosted mode on oc4j

2008-10-23 Thread Anti
Hello, Thanks for your help. I have been working on my application for a while deploying directly on oc4j, that was a happy world, but today I had to run the application in hosted mode and got the next exception: [ERROR] Unable to find type 'org.eagle.app.docUpload.client.DocUpload' (you can

Invocation Exception on Firefox

2008-10-23 Thread Lane
I am getting the following error: com.google.gwt.user.client.rpc.InvocationException: Unable to initiate the asynchronous service invocation -- check the network connection. when trying to connect to my server from Firefox. It works fine when I connect from IE. My code is uncontroversial, I

hibernate4gwt problem

2008-10-23 Thread Akhil
Hi I am using hibernate4gwt to avoid serialization problems of hibernate generated sets and other collections . My code seems to work properly in hosted mode but when running on tomact i am getting the following exception when passing objects from server to client side

How to pass Session in two different GWT application

2008-10-23 Thread lalit
Hi, I have three GWT application[ A, B and C] . All these three application having login screen. My requirment is that if User already logged in Application 'A' then he should be able to move on application B and C without making a login for B and C. Suppose after login for A, A application

Re: Can't get RPC example working (using GWT 1.5 and kitchenSink)

2008-10-23 Thread 전준희
I Love you guys too, as soon as got the exact same problem, the first search result on Google was this thread, which solved the problem!@ On Sep 12, 9:49 am, vezir [EMAIL PROTECTED] wrote: I just luv u guyz thank u for the solution On Aug 29, 1:11 am, EJ Blom [EMAIL PROTECTED] wrote:

Getting the table from the FieldSet

2008-10-23 Thread Gwt ongole
Hi I am tring to get the Widget from the Field set. Is it possible for getting Widget From the field set i add the table to the field set like FieldSet f=new FieldSet() f.add ( Flextable object) But i did n't get the table from the filed set is it possible to get the flex table or any Widget

Problem playing swt file in Panel or Window with IE 7

2008-10-23 Thread victor
Hello!!! I am using Window widget to showing swt, it is work in all browsers except worst IE7. How I can solve a problem? My example : setHtml(object data='manual/GoogleSearch.swf' type='application/x-shockwave-flash' width='100%' height='100%' );

Re: PureMVC

2008-10-23 Thread yunhui song
Hi I have used Guice and Gin to implements MVC framework(like backend spring framework). By this way view(ui), event Listener and data access(xmlHttpReqeust wrapped by REST-GWT) can be seperated by three layers. Gin module used to initialize and couple all the instance used in the GWT

Re: RPC fails under Tomcat

2008-10-23 Thread medgey
This is not related to GWT, but you can debug tomcat in eclipse using standard java remote debugging. On Oct 22, 11:57 pm, Barry [EMAIL PROTECTED] wrote: Hi ... I have an RPC that is working fine in host mode but fails in web mode and I don't know what to do to troubleshoot it. On the

Re: DialogBox IE6 DragDrop Problem

2008-10-23 Thread Thomas Broyer
On 8 oct, 16:29, Schimki86 [EMAIL PROTECTED] wrote: It is possible to Drag Drop the DialogBox over its caption. In IE6 it is not able to drag the dialog correctly: only when the mouse is over the caption-text it works... any idea? Thanks! Wait for GWT 1.6 (or ask for a backport or r3673 to

Re: RequestBuilder + POST + multipart/form-data

2008-10-23 Thread Alex Rice
(sorry if this double posts- I think I messed up my last reply) On Oct 23, 4:40 am, Thomas Broyer [EMAIL PROTECTED] wrote: The best advice I could give you is to use application/x-www-form- urlencoded with your Alfresco Web Script ;-) Thomas, thanks for your insights into Alfresco, and

IndexOutOfBoundsException RPC Exception

2008-10-23 Thread John
Hi, I have a web project that is now being built using GWT 1.5.3. The project has been in development for a few months now and just this morning started throwing this exception - though I don't recall any changes that were introduced when the exception started appearing: 13:17:06,752 ERROR

Hibernate annotations

2008-10-23 Thread ET
need some clarifications. To use hibernate annotations do we have to use ejb3 entity beans? what is the difference anyway? thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: RequestBuilder + POST + multipart/form-data

2008-10-23 Thread Alex Rice
On Oct 23, 4:40 am, Thomas Broyer [EMAIL PROTECTED] wrote: The best advice I could give you is to use application/x-www-form- urlencoded with your Alfresco Web Script ;-) Thomas, thanks for pointing out my code errors, and your valuable insights about Alfresco! I would like to use

Re: How to pass Session in two different GWT application

2008-10-23 Thread [EMAIL PROTECTED]
We've had similar design issues in the past. The easiest and stablest (sp?) solution was to create a session concept in your database and do everything there. We were unable to make the session object on various web containers behave consistentlybut your mileage may vary. On Oct 23, 10:03 

Re: History doesn't works when modifying iframes by id

2008-10-23 Thread Sumit Chandel
Hi Davsket, How exactly is history failing for you when making references to the elements below? Is it only that the banners represented by the elements you're retrieving don't update appropriately, or does history become completely nonfunctional? I would imagine it is the former, in which case

Re: gwt deployment

2008-10-23 Thread Sumit Chandel
Hi Arnaud, The link below should be exactly what you're looking for. Example Deployment with Tomcat: http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=DevGuideRPCDeployment Hope that helps, -Sumit Chandel On Tue, Oct 21, 2008 at 12:28 PM, [EMAIL

text file in frame does not respect UTF-8 encoding IE6 and IE7 issue

2008-10-23 Thread Salman Hemani
I have tried searching for the solution to this problem and I am not having any luck. Problem: I have a UTF-8 text file with chinese characters and it is loaded in the Frame object which renders correctly in the GWT browser as well as IE 7. But IE6 and Firefox do not display the characters

Re: GWT through HTML/DHTML

2008-10-23 Thread DataSurfer
a href=http://some-domain.com/YourGWTApp/; target=_blankLink Text/a On Oct 5, 2:17 am, Sachin [EMAIL PROTECTED] wrote: Hi, How can I access Application created through GWT throught HTML link ? I want to create a pure HTML link suppose Window. Then after clicking on this link I want to open

Re: Hibernate annotations

2008-10-23 Thread noon
Not a GWT question but : Hibernate use JPA annotations for most of its mapping description, and some more specific annotations for non- standard operations (such as delete-orphan casacade option). Regards Bruno On 23 oct, 20:32, ET [EMAIL PROTECTED] wrote: need some clarifications. To use

keyboard short cut problem..

2008-10-23 Thread jhpark
Sorry I can't write english. I want button navigation.. example) button1 button2 button3 button4 key press : ctrl + n - button1 ctrl + n - button2 ctrl + n - button3 ctrl + n - button4 ctrl+p - button3 ctrl+p - button2 ctrl+p - button1 I want like google mail short cut..

Re: Problem with gwt-maps-1.0.0RC1 and InfoWindow

2008-10-23 Thread Jim Alateras
Just to add some further information. I am using GWT 1.5.2 on the mac On Oct 24, 12:20 pm, Jim Alateras [EMAIL PROTECTED] wrote: HI, I am trying to open the info window to a marker in my GET application using the code below. When I click on it the code in 'onClick' gets executed (i can it

MapWidget only partially rendering

2008-10-23 Thread Jim Alateras
I am only getting a part of the map widget rendering when I run my gwt application. This happens both in hosted and non-hosted mode. I need to resize the window before i get a complete map. Here is my code mapWidget = new MapWidget(initialPoint, zoomLevel);

Re: Problem with gwt-maps-1.0.0RC1 and InfoWindow

2008-10-23 Thread Eric Ayers
0) Try replacing event.getSender() with 'marker'. Its already marked final (or did you try that already?) 1) The 1.0.0 RC1 release was plagued with a few issues related to InfoWindows and overlays returned in the marker click handler. All the fixes are now committed to the

Re: Hibernate annotations

2008-10-23 Thread Au Lai Seong
ejb3 entity bean might be confuse. since ejb3 came out, the entity layer already not tight with ejb package. It come out a new naming which is call JPA. When you use hibernate annotation, it is sure you need to use hibernate as the persistence layer. Hibernate annotation is the extension of JPA

Re: Problem with gwt-maps-1.0.0RC1 and InfoWindow

2008-10-23 Thread Jim Alateras
Eric, Thanks for the response 0) I have tried both using marker and event.getSender with the same result 1) I have checked out the specified branch, svn/releases/maps/1.0. Is there a guide on building the jar? 2) I have changed to 2.118 and now i get the map type and zoom controls showing.

Re: MapWidget only partially rendering

2008-10-23 Thread Jim Alateras
Eric, Tried using mapWidget.checkResize but unfortunately i still need to resize the actual window to get to render completely. On Oct 24, 1:02 pm, Eric Ayers [EMAIL PROTECTED] wrote: Stupid maps trick #183: try mapWidget.checkResize() after filling out your map.  Sometimes, changing the

Re: MapWidget only partially rendering

2008-10-23 Thread Eric Ayers
Stupid maps trick #183: try mapWidget.checkResize() after filling out your map. Sometimes, changing the type of panel the map is contained in also makes a difference (I usually use a VerticalPanel) On Thu, Oct 23, 2008 at 9:33 PM, Jim Alateras [EMAIL PROTECTED] wrote: I am only getting a part

Passing parameters from JSP to GWT Entry Point

2008-10-23 Thread Sumved
Hi All, I am wondering whether we can pass parameter from JSP to GWT Entry point. I hope it is there because in real scenario probably no-body will use only GWT. Like, I have integrated Struts with GWT. Now, My question is, Can we pass a value from JSP to GWT Entry point? Thanks in advance.

Re: Gears 0.4 features in GWT Google API Library

2008-10-23 Thread Mark Renouf
Ok. I went ahead and implemented the Geolocation stuff too, so this brings gwt-gears up to speed with the latest gears 0.4 release. I filled out a CLA, I'm not sure how/when I know that it was accepted. There are a few things regarding design that I'm wondering. Whats the preferred solution for

Re: Invocation Exception on Firefox

2008-10-23 Thread Lane
On Oct 23, 11:58 am, Lane [EMAIL PROTECTED] wrote: I am getting the following error: com.google.gwt.user.client.rpc.InvocationException: Unable to initiate the asynchronous service invocation -- check the network connection. when trying to connect to my server from Firefox. It works fine

Re: GWTTestSuite - ClassCastException on executing test suite

2008-10-23 Thread sean
Hi Jan, I also receive the No source code is available for type com.google.gwt.junit.tools.GWTTestSuite; did you forget to inherit a required module? message. I think this must be something GWT just left out. One would think you would find the module for GWTTestSuite, but it does not exist.

GWT links are not working with Internet Expolrer

2008-10-23 Thread ramesh_mantra
Hai All, I designed application by using GWT. In that application i have one problem. My application links are working properly when i run application in Mozilla Firefox and Hosted mode.But same application links are not working with Internet Explorer. please give me your valuable suggestions

Re: GWT links are not working with Internet Expolrer

2008-10-23 Thread Ian Petersen
On Fri, Oct 24, 2008 at 12:16 AM, ramesh_mantra [EMAIL PROTECTED] wrote: please give me your valuable suggestions to fix this issue. If you expect any kind of useful answer, you're going to have to present a lot more information. What do you mean by links? Hyperlinks? What's the failure mode

parse xml problem

2008-10-23 Thread AyeAyeAung
root menu type=FFolder 1 menu type=SFolder 1 Shortcut 1/menu menu type=SFolder 1 Shortcut 2/menu menu type=FFolder 1 Folder 1 menu type=SShortcut1/menu menu type=FShortcut2/menu

SetAccesskey question...

2008-10-23 Thread jhpark
Sorry I can't write english well... Button btn = new Button(); btn.setAccessKey('r'); - only 'r'; alt + r -- button work... but I want 'r' and ' t' alt + r + t == button work.. and alt + ctrl + r == button work... It is posibble ? thank...

Re: Rick Text Area - Newbie question

2008-10-23 Thread kozura
As the post above mentions, this is not part of GWT, so that you can configure the editor interface however you please. But you can copy the RichTextToolbar to use from the samples provided in the gwt installation; you'll find it (and the images needed) in the directory:

Re: GWT incubator help

2008-10-23 Thread ajay jetti
Hey Isaac dorry for the late reply I checked the classpath for user.jar, i m used both gwt 1.5 and 1.5.2 still the error persists. I cant seem to import any external jar yours --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[gwt-contrib] [google-web-toolkit commit] r3819 - branches/1_6_events/user/src/com/google/gwt/user/client

2008-10-23 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Oct 23 05:31:42 2008 New Revision: 3819 Modified: branches/1_6_events/user/src/com/google/gwt/user/client/Window.java branches/1_6_events/user/src/com/google/gwt/user/client/WindowCloseListener.java

[gwt-contrib] Re: Code Review: gwt-google-apis Maps Add version check

2008-10-23 Thread Miguel Méndez
On Thu, Oct 23, 2008 at 8:42 AM, Eric Ayers [EMAIL PROTECTED] wrote: Hi Miguel, Could you please review this patch? It is very small! I am currently running into issues with maps regression tests failing due to some problems with the Maps JavaScript API. The Maps JavaScript API can be

[gwt-contrib] [google-web-toolkit commit] r3820 - branches/1_6_events/user/test/com/google/gwt/user/client/ui

2008-10-23 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Oct 23 06:25:32 2008 New Revision: 3820 Modified: branches/1_6_events/user/test/com/google/gwt/user/client/ui/ImageTest.java Log: Updated ImageTest to test handlers. The listener tests still exist. Patch by: jlabanca Modified:

[gwt-contrib] [google-web-toolkit commit] r3821 - branches/1_6_events/user/test/com/google/gwt/user/client/ui/impl

2008-10-23 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Oct 23 06:47:24 2008 New Revision: 3821 Modified: branches/1_6_events/user/test/com/google/gwt/user/client/ui/impl/ClippedImagePrototypeTest.java Log: Added handler tests to the listener tests. Patch by: jlabanca Modified:

[gwt-contrib] Re: Code Review: gwt-google-apis Maps Add version check

2008-10-23 Thread Miguel Méndez
On Thu, Oct 23, 2008 at 9:44 AM, Eric Ayers [EMAIL PROTECTED] wrote: On Thu, Oct 23, 2008 at 9:21 AM, Miguel Méndez [EMAIL PROTECTED] wrote: On Thu, Oct 23, 2008 at 8:42 AM, Eric Ayers [EMAIL PROTECTED] wrote: Hi Miguel, Could you please review this patch? It is very small! I am

[gwt-contrib] [google-web-toolkit commit] r3823 - branches/1_6_events/user/test/com/google/gwt/user/client/ui

2008-10-23 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Oct 23 06:58:08 2008 New Revision: 3823 Modified: branches/1_6_events/user/test/com/google/gwt/user/client/ui/CompositeTest.java Log: Add handler tests to CompositeTest. Patch by: jlabanca Modified:

[gwt-contrib] [google-web-toolkit commit] r3822 - branches/1_6_events/user/test/com/google/gwt/user/client/ui

2008-10-23 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Oct 23 06:48:38 2008 New Revision: 3822 Modified: branches/1_6_events/user/test/com/google/gwt/user/client/ui/ImageTest.java Log: Removed the SuppressWarning(deprecation) annotations from ImageTest. Since the methods use deprecated libraries, they

[gwt-contrib] [google-web-toolkit commit] r3824 - branches/1_6_events/user/src/com/google/gwt/user/client/ui

2008-10-23 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Oct 23 07:38:28 2008 New Revision: 3824 Modified: branches/1_6_events/user/src/com/google/gwt/user/client/ui/Widget.java Log: Fixed a bug in Widget.onAttach() where we do not update eventsToSink, which makes subsequent attempts to sinkEvents fail to

[gwt-contrib] [google-web-toolkit commit] r3825 - branches/1_6_events/user/test/com/google/gwt/user/client/ui

2008-10-23 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Oct 23 07:39:54 2008 New Revision: 3825 Modified: branches/1_6_events/user/test/com/google/gwt/user/client/ui/AnchorTest.java Log: Added handler tests to the listener tests in AnchorTest. Patch by: jlabanca Modified:

[gwt-contrib] Iterables and Collections

2008-10-23 Thread Charles Fry
I couldn't help but noticing that there are several places in GWT that perform logical aggregations, but don't expose the aggregated elements using Iterable (or List!). The two examples off the top of my head are IndexedPanel and ListBox, though I'm sure there are more. IndexedPanel could just

[gwt-contrib] table columns

2008-10-23 Thread Charles Fry
As a new GWT user (thanks a ton for the awesome toolkit) I have a few issues with table columns: 1) To my surprise, FlexTable row and column spans effect the offsets of later cells in the row/column of the span. In other words the row and column numbers passed as arguments into all of the

[gwt-contrib] Re: OOPHM Gecko 1.8

2008-10-23 Thread Sam Gross
On Thu, Oct 23, 2008 at 2:06 AM, John Tamplin [EMAIL PROTECTED] wrote: On Thu, Oct 23, 2008 at 12:22 AM, Sam Gross [EMAIL PROTECTED] wrote: I've been working on trying to create a version of oophm-xpcom.xpi that runs in both Firefox 2 and Firefox 3. I also modified some of the makefiles in

[gwt-contrib] [google-web-toolkit commit] r3828 - branches/1_6_events/user/src/com/google/gwt/user/client

2008-10-23 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Oct 23 10:22:49 2008 New Revision: 3828 Modified: branches/1_6_events/user/src/com/google/gwt/user/client/History.java branches/1_6_events/user/src/com/google/gwt/user/client/HistoryListener.java Log: Deprecated HistoryListener now that

[gwt-contrib] [google-web-toolkit commit] r3830 - in branches/1_6_events/samples/showcase/src/com/google/gwt/sample/showcase: . client clie...

2008-10-23 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Oct 23 10:47:07 2008 New Revision: 3830 Modified: branches/1_6_events/samples/showcase/src/com/google/gwt/sample/showcase/Showcase.gwt.xml branches/1_6_events/samples/showcase/src/com/google/gwt/sample/showcase/client/Application.java

[gwt-contrib] [google-web-toolkit commit] r3831 - branches/1_6_events/user/src/com/google/gwt/event/logical/shared

2008-10-23 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Oct 23 11:18:57 2008 New Revision: 3831 Added: branches/1_6_events/user/src/com/google/gwt/event/logical/shared/BeforeSelectionEvent.java (contents, props changed)

[gwt-contrib] [google-web-toolkit commit] r3832 - branches/1_6_events/user/src/com/google/gwt/user/client/ui

2008-10-23 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Oct 23 11:21:36 2008 New Revision: 3832 Modified: branches/1_6_events/user/src/com/google/gwt/user/client/ui/L.java branches/1_6_events/user/src/com/google/gwt/user/client/ui/TabBar.java

[gwt-contrib] Re: Dialog box has odd look when used as a gadget

2008-10-23 Thread Eric Ayers
The issue is that the images in the .css file weren't loading. I picked some rules out of standard.css and removed images from the rules. On Wed, Oct 22, 2008 at 11:28 AM, John LaBanca [EMAIL PROTECTED] wrote: I don't know much about gadgets or the restrictions they impose. You could examine

[gwt-contrib] [google-web-toolkit commit] r3834 - in branches/1_6_events: samples/showcase/src/com/google/gwt/sample/showcase/client user/s...

2008-10-23 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Oct 23 15:25:49 2008 New Revision: 3834 Modified: branches/1_6_events/samples/showcase/src/com/google/gwt/sample/showcase/client/Showcase.java branches/1_6_events/user/src/com/google/gwt/user/client/ui/L.java