Re: gwt Gadget Creation error

2008-10-28 Thread zujee
Hi , I tried gwt-gadget 1.0.1. But still the same error .. :( [ERROR] Failed to create an instance of 'com.myApp.client.HelloPreferences' via deferred binding com.google.gwt.core.client.JavaScriptException: (TypeError): Object expected number: -2146823281 description: Object expected at

Re: How to avoid a lot of AsyncCallbacks

2008-10-28 Thread Ian Petersen
On Mon, Oct 27, 2008 at 7:16 PM, trancemar [EMAIL PROTECTED] wrote: Which pattern do you recommend to not create an AsyncCallback class for each RPC ? I basically always use an anonymous local class, like this: service.makeRPC(arguments, new AsyncCallbackResultType() { public void

GWT Grid / FlexTable Performance

2008-10-28 Thread mat
Hi, I need to create a table of up to 7 columns x 300 rows. The content within each cell gets dynamically updated. From past experience, its faster to use javascript to concatenate HTML to recreate the table every time the content is updated. Has anyone tried to use GWT's Grid or FlexTable

Re: GWT-ext or ext-GWT?

2008-10-28 Thread alex.d
Ext GWT definitely. It's nativa Java-GWT code vs. Javascript wrapper. Even though you have to pay for it it's worth it. On 28 Okt., 03:10, hezjing [EMAIL PROTECTED] wrote: Hi Yes, I agree with omsrobert that the license is one of the deciding factors. However, the GWT-Ext LGPL license

Re: How to avoid a lot of AsyncCallbacks

2008-10-28 Thread Lothar Kimmeringer
trancemar schrieb: Which pattern do you recommend to not create an AsyncCallback class for each RPC ? Do you create a new java-file for each callback? That's not necessary as Ian already pointed out. If EntryPoint class implements AsyncCallback and RPC returns each time a different Object,

parentElement-Exception

2008-10-28 Thread Syed Shahul
hi all, while i clik the link options i got this bug. kindly help me thanking you in anticipation, [ERROR] Uncaught exception escaped com.google.gwt.core.client.JavaScriptException: (TypeError): 'parentElement' is null or not an object number: -2146823281 description: 'parentElement' is null

Re: Ext GWT

2008-10-28 Thread sherod
Isn't that the code for GWT-EXT, not ExtGWT ? On Oct 17, 3:47 am, Niklas Derouche [EMAIL PROTECTED] wrote: On Thu, Oct 16, 2008 at 10:54 AM, Michi_de [EMAIL PROTECTED] wrote: I wanted to add a clickListener to the button and then start a method. Symple as it is in GWT. In Ext GWT i just

GWT 1.5 internationalization

2008-10-28 Thread d
Hello All. I am a new GWT developer. I am now having a trouble with internationalization. In GWT host mode, it keeps giving me the error message, ' No Resource for key 'Home_Office' Here is a snap shot of my code: public interface NameConstants extends Constants {

Re: Ext GWT

2008-10-28 Thread sherod
I think the correct code for ExtGWT is button.addListener(Events.OnClick, new ListenerButtonEvent() { public void handleEvent(ButtonEvent be) { System.out.println(Clicked!); //Replace this bit :) }

Re: How to avoid a lot of AsyncCallbacks

2008-10-28 Thread trancemar
I'm thinking about creating one AsyncCallback with a eventId field which is a constant coming from an enum, and up to the eventId, do different actions onSuccess method ... like : service.makeRPC(arguments, new MyAsyncCallback(MyEvents.SEARCHBUTTON)); and the MyAsyncCallback will be like,

Re: How to avoid a lot of AsyncCallbacks

2008-10-28 Thread Magno Machado
It'll break your code readability and maintainability 2008/10/28 trancemar [EMAIL PROTECTED] I'm thinking about creating one AsyncCallback with a eventId field which is a constant coming from an enum, and up to the eventId, do different actions onSuccess method ... like :

Re: How to avoid a lot of AsyncCallbacks

2008-10-28 Thread Lothar Kimmeringer
trancemar schrieb: public void onSuccess(Object o ) { if(eventId == MyEvents.SEARCHBUTTON ) { // todo } else if ( .. ) { // todo } } The application I'm currently working on has a count of 187 AsyncCall-

Building .WAR using Ant

2008-10-28 Thread Muhannad
Hi, I'm trying to build .war file using Ant. I get this error: gwtcompile: [java] Loading module 'com.MyCom.client.MyApp' [java] [ERROR] Unable to find 'com/MyCom/client/MyApp.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

Re: Building .WAR using Ant

2008-10-28 Thread Lothar Kimmeringer
Muhannad schrieb: I'm trying to build .war file using Ant. I get this error: gwtcompile: [java] Loading module 'com.MyCom.client.MyApp' [java] [ERROR] Unable to find 'com/MyCom/client/MyApp.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath

Handling events from widget`s childes

2008-10-28 Thread anglers
Hi, guys! I use some GWT implementation of HTML FieldSet. Events from FieldSet are blocked somewhere. Can somebody help me to resolve this problem? In this example I can not see Alert box with text Hello! Usage example: .. FieldSet contactFS = new FieldSet(); final FlexTable

Re: Using ArrayList to instantiate GMap Polyline does not work

2008-10-28 Thread Eric Ayers
Maybe this is just an artifact of your example, but you allocate enough room for 5 points, but only populate 2. The other 3 may have different default values for ArrayList vs. Array. On Tue, Oct 28, 2008 at 1:48 AM, Joshua Partogi [EMAIL PROTECTED]wrote: Dear all, I want to draw a Polyline

Re: Gears 0.4 features in GWT Google API Library

2008-10-28 Thread Eric Ayers
Hi Mark, Thanks for posting this. I haven't forgotten about your patch, but I'm busy with a release and may not get a chance to send you feedback until later this week. I want to put your changes into 'trunk' and need to merge the release branch back. Also, I want to try out a new code review

Re: How to avoid a lot of AsyncCallbacks

2008-10-28 Thread gregor
Hi Trancemar, I agree with Magno that using a single global callback would make code unreadable spaghetti (artificial disconnection between requesting section of UI and response callback), and with Lothar that it would be, if anything, slower since you'd have to slog through the entire if-

Re: Httpsession and GWT

2008-10-28 Thread walden
Hi Paul, Responses inline... On Oct 27, 6:50 pm, Paul van Hoven [EMAIL PROTECTED] wrote: Hi Walden, thanks for the answers. Sorry, I have to ask you again: You answerd: Once you've ascertained the user's identity and bound it to the session, sure. Do you mean that one should use the

Re: Project won't run in hosted mode?

2008-10-28 Thread walden
Michael, The only part of your console log that's remotely germain is this part: debug: And then you've left us with absolutely no idea what that target even does. How could anyone know what's gone wrong? Walden On Oct 27, 5:57 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I have

Re: Building .WAR using Ant

2008-10-28 Thread Muhannad
Lothar Kimmeringer wrote: It seems that the path you are refering to is not passed to the GWTCompiler in a correct way. That's right Lothar! thank you very much. I get it; the target was as follow: target name=gwtcompile java classname=com.google.gwt.dev.GWTCompiler fork=true

Re: Deploy RPC on WAMP5 Server

2008-10-28 Thread Muhannad
Thank you very much. In the end I decided to move to tomcat and make some configuration to get PHP work with it: http://wiki.apache.org/tomcat/UsingPhp On Oct 27, 5:16 am, Jason Essington [EMAIL PROTECTED] wrote: GWT-RPCuses Java Servlets on the server side. apache + mod_php   doesn't directly

Re: GWT-ext or ext-GWT?

2008-10-28 Thread Arthur Kalmenson
I would say go with neither. If you look at the group, you'll find that there are endless problems with these libraries. They're shoddy, poorly put together, slow and nowhere near the level of quality that you come to expect from GWT. The library is made by Javascript developers who have little

Re: Problem while integrating GWT with struts

2008-10-28 Thread Krish
Thanks for your reply, Got the solution. Previously I defined a tile and imported body content using tiles:insertAttribute name='body'/. This causes the problem. Now solved that problem by adding span id=slot1/span in jsp and in Entrypoint RootPanel.get(slot1).add(button); On Oct 28, 8:40 am,

Re: Suggestion: GWT port to Desktop

2008-10-28 Thread lkcl
On Oct 26, 10:16 pm, ross [EMAIL PROTECTED] wrote: this thread makes me laugh :) I will continue to : -use pyjamas only in bed i _love_ talking about pyjamas because i get advertised about women's nightwear with googlemail. -use GWT for building my sizzling new web app -use J2SE to

Re: GWT Grid / FlexTable Performance

2008-10-28 Thread Brian
Yeah I did something similar to that. Performance was pretty good in most cases. I tried my big dynamic table on a bunch of computers, and the little lags bothered me enough on slow laptops, to just dump that approach, make a big string on the server of the html and do a 'setInnerHtml' on the

Re: Suggestion: GWT port to Desktop

2008-10-28 Thread lkcl
On Oct 27, 9:35 am, Thomas Broyer [EMAIL PROTECTED] wrote: 2008/10/27 Guy Rouillier [EMAIL PROTECTED] Ross, you are thinking too narrowly.  Think of a single code base.  When it runs on the desktop, it has access to local file system and other OS facilities.  When it runs in a browser

Re: Suggestion: GWT port to Desktop

2008-10-28 Thread lkcl
On Oct 27, 2:51 am, Ian Bambury [EMAIL PROTECTED] wrote: If you gave a practical example it might help people understand the benefits ian, hi, i do know what you mean. however, it is quite hard to give a practical example when what you're talking about is that the entire GWT application -

Re: Suggestion: GWT port to Desktop

2008-10-28 Thread lkcl
On Oct 27, 3:54 pm, Magno Machado [EMAIL PROTECTED] wrote: What's the point on running the application on desktop if it will run in the exact same way that it would do on browser?I mean... If the desktop app will look exactly equals to the browser version, with the same look and feel, same

Taglibs in GWT

2008-10-28 Thread Krish
Hi, Can we use taglibs in GWT page?. This is my requirement. Can any one please suggest me how to do this? Thanks in advance. Krish --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: Suggestion: GWT port to Desktop

2008-10-28 Thread lkcl
On Oct 28, 6:17 am, GWBasic [EMAIL PROTECTED] wrote: The browser and desktop are fundamentally different environments, pyjamas-desktop shows that that's no longer really the case; it shows that there are sufficient concepts in the DOM model to map one-for-one into desktop widget set

Re: Taglibs in GWT

2008-10-28 Thread Lothar Kimmeringer
Krish schrieb: Can we use taglibs in GWT page?. This is my requirement. Can any one please suggest me how to do this? A GWT-application is embedded into a regular HTML-page. This page can also be a JSP-page containing taglibs, so I'm not sure where exactly your problem is. Maybe you can be a

Re: Suggestion: GWT port to Desktop

2008-10-28 Thread Lothar Kimmeringer
Ian Bambury schrieb: I write desktop apps when I have to because I need to use the local file system plus or minus the web, or when I need to eliminate the lag of the net or I need my users to be able to work in a lead-lined box or on the train in tunnels that haven't yet been fitted with an

Re: Cursor blinks beneath dialogs, Elements not usable

2008-10-28 Thread Schimki86
We found out, that a RichTxtArea- Element is the reason. I specify my situation: I have 3 main-dialogs. Everey Main-Dialog contains a TabPanel with subdialogs. The application starts in the first Dialog on tab number one. The RichTextArea is part of the second subdialog of the first main-dialog.

Re: Taglibs in GWT

2008-10-28 Thread Krish
Hi, Yes, GWT application is embedded into html page(i.e. GWT compiler converts java file to js file). But after conversion, I can't use any of my custom taglibs(i.e. as I dont have any control on compiled code). I need to use the custom taglibs before converting to JS file. (i.e. Is there any

Re: Suggestion: GWT port to Desktop

2008-10-28 Thread Ian Bambury
Hi Lothar, I can't actually think of a single situation where I myself would design a web app (or even a desktop app) with 10,000+ tree nodes open at the same time, and I don't think I've ever come across one while surfing the web, but if I'm ever forced to build one that the general public might

Re: CSS font size not working in hosted mode

2008-10-28 Thread sibiquin
I added the style tag you suggested to the head section of the HTML. The font family displayed correctly, but the size has no effect. As another experiment I installed Eclipse and GWT 1.5.3 on another machine and it works fine there - both machines are Windows XP Pro SP2. I have no clue as to

Re: rpc with external servlet

2008-10-28 Thread eggsy84
If you are connecting to a server under a different context then JSONP is possibly the way to go. See: http://code.google.com/support/bin/answer.py?answer=65632topic=11368 and http://eggsylife.blogspot.com/2008/10/gwt-and-cross-site-jsonp-in-j2ee.html for a few tutorials. eggsy On Oct 27,

Re: Taglibs in GWT

2008-10-28 Thread Lothar Kimmeringer
Krish schrieb: Yes, GWT application is embedded into html page(i.e. GWT compiler converts java file to js file). But after conversion, I can't use any of my custom taglibs(i.e. as I dont have any control on compiled code). I'm still not sure if we're talking about the same thing. Even after

Re: CSS font size not working in hosted mode

2008-10-28 Thread Ian Bambury
Don't bite my head off, but you *are* amending the right html file aren't you? It's personal experience talking here :-) It might also be worth (before the next suggestions) clearing out the IE cache, and deleting any /bin/ and /tomcat/ and /www/ directories in any other projects that might be

Re: Taglibs in GWT

2008-10-28 Thread Krish
Ok.. sorry if I am not giving the clear picture.. Assume I have a jsp file which has a custom taglib file like below. %@ taglib uri=/WEB-INF/security_taglib.tld prefix=security % security:permitted privilege=%= Role.MODIFY% // todo. display some text box. here /security:permitted So while

Re: Suggestion: GWT port to Desktop

2008-10-28 Thread Lothar Kimmeringer
Ian Bambury schrieb: I can't actually think of a single situation where I myself would design a web app (or even a desktop app) with 10,000+ tree nodes open at the same time, and I don't think I've ever come across one while surfing the web, but if I'm ever forced to build one that the

Splitter bar not working in Firefox Browser

2008-10-28 Thread Manju
I have a application where I am using 2 IFrames inside where on i am dynamically changing the source of inner IFrame so that it creates a history entry(Forward-Back button). My problem is I have a hook which works fine without History Interface implementation but when used with History

Client Authentication with SSL

2008-10-28 Thread adam.urban
Hi, I am new to security technologies and I have some questions. I wrote a web service with Googlte Web Toolkit. Now I made all changes to Apache Tomcat to use a SSL-Connection with Client- and Server- Certificates. The next step is to read out some attributes about a client- certificate to

Launch configuration GWTShell references non-existing project ...

2008-10-28 Thread [EMAIL PROTECTED]
I've deleted previous project and try to lanch new one, but when I try to Run as command for new one it's appear the message Launch configuration GWTShell references non-existing project deletedProjectName. In launch configuration properties of new project stated the right name of new project,

groundOverlay issue

2008-10-28 Thread Vinz369
Dear all, I'm trying to use integrate a groundOverlay in my application. Here is the piece of code which is doing it: LatLngBounds cloudOverlayBounds = LatLngBounds.newInstance(LatLng.newInstance(-90,-179), LatLng.newInstance(90,179)); final GroundOverlay cloudOverlay = new

Integrating GWT application with existing java project

2008-10-28 Thread vk
Hi, I've been developing a GWT-application that uses RPC. However, now I want to integrate the GWT-app into the existing J2EE-application . I am however not very good at integrating GWT-structure, or how to succesfully move it around to make it fully integrated with all the existing code in the

Re: Taglibs in GWT

2008-10-28 Thread Lothar Kimmeringer
Krish schrieb: %@ taglib uri=/WEB-INF/security_taglib.tld prefix=security % security:permitted privilege=%= Role.MODIFY% // todo. display some text box. here /security:permitted So while converting this jsp page to GWT, I need to import this security taglib file. How can I design

Re: Taglibs in GWT

2008-10-28 Thread Krish
Thanks a lot... On Oct 28, 11:28 am, Lothar Kimmeringer [EMAIL PROTECTED] wrote: Krish schrieb: %@ taglib uri=/WEB-INF/security_taglib.tld prefix=security % security:permitted privilege=%= Role.MODIFY%   // todo. display some text box. here /security:permitted So while converting

Re: Debugging support in compile mode?

2008-10-28 Thread Jeff
On Oct 14, 11:38 am, JohnMudd [EMAIL PROTECTED] wrote: Any way to get the same sort ofdebuggingsupport in compile mode as in shell mode? I'm using XML/RPC so I have to run in compile mode, not shell mode. The biggest drawback is all errors are not caught and reported.  That turns simple

Re: Integrating GWT application with existing java project

2008-10-28 Thread walden
VK, For starters, why don't you create a 'gwt' folder in your source hierarchy that is outside the scope of all your Java EE classes, and preserve the canonical gwt project structure there. It could be just as simple as that. In future, if you have GWT remote services, you may want to move

Re: Httpsession and GWT

2008-10-28 Thread Paul van Hoven
Thanks for the answers. On 28 Okt., 13:33, walden [EMAIL PROTECTED] wrote: Hi Paul, Responses inline... On Oct 27, 6:50 pm, Paul van Hoven [EMAIL PROTECTED] wrote: Hi Walden, thanks for the answers. Sorry, I have to ask you again: You answerd: Once you've ascertained the user's

Re: JUnit Testing error

2008-10-28 Thread Sumit Chandel
Hi Paul, From the looks of it, it seems that what you have is a GWTTestCase in which you are trying to test server-side code. Although in some instances this could go through, it's not the recommended practice and isn't guaranteed to work. Server-side code should be tested using standard JUnit

Re: Client Authentication with SSL

2008-10-28 Thread walden
Let your client make a call to the server for it. On Oct 28, 6:31 am, adam.urban [EMAIL PROTECTED] wrote: Hi, I am new to security technologies and I have some questions. I wrote a web service with Googlte Web Toolkit. Now I made all changes to Apache Tomcat to use a SSL-Connection with

Re: Suggestion: GWT port to Desktop

2008-10-28 Thread Ian Bambury
So independent of the fact that you might not be able to imagine reasons, it doesn't mean that there aren't any ;-) Oh no, I wasn't suggesting that at all - quite the opposite. It's precisely because I *don't* have the imagination that I need help :-) For example, if you are writing

Re: Client Side Checked Exceptions

2008-10-28 Thread Ravi M
Stephen I _think_ Lothar's point is that MyException needs to extend com.google.gwt.user.client.rpc.SerializableException not just implement IsSerializable for exceptions across RPC to work properly. I had this problem a few weeks back where exceptions thrown across RPC were merely

Re: CSS font size not working in hosted mode

2008-10-28 Thread Ian Bambury
Running out of ideas, here. I have had a really strange situation - I can't really remember now, memory or a crash or something - nothing like you're getting - and I'd even rebuilt the machine (not because of that problem) and *still* got it. The someone said that certain combinations of Java and

TreeTable?

2008-10-28 Thread Chris
I found two tree table widgets. Anyone have links to others they can share? http://www.mattboyd.com/?page_id=7 http://extjs.com/products/gxt/ Thanks, Chris --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

No Mouse Down event with FocusPanel Wrapping MapWidget

2008-10-28 Thread Steve
I'm using GWT 1.5.3 with gwt-maps-1.0 to put a map on my web page. I'd like the user to be able to drag out a box on the map by clicking the left mouse button on the upper left corner of the box and dragging it to the lower right corner, with rubber-banding so the box displays during the drag.

Re: GWT with the G1

2008-10-28 Thread Sumit Chandel
Hi Aaron, Specifically, check out the release notes for GWT 1.5.3: http://code.google.com/webtoolkit/releases/release-notes-1.5.3.html#Release_Notes_Current One of the main fixes that went into 1.5.3 is the fix to have RPC calls work on the Android web browser. If you haven't made the switch to

An Interpreter running inside the Browser using GWT

2008-10-28 Thread [EMAIL PROTECTED]
Hello, I just put the first version of a project online. Since it heavily relies on GWT and uses it to do some advanced stuff, I thought it is worth to put up a post about it here. It is an interpreter that runs completely inside the browser. The language that it interprets is a new LISP

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

2008-10-28 Thread Salman Hemani
I resolved the issue by right clicking on the frame and setting the default encoding to UTF-8 and from that point onwards everything works even after you close the browser. On Oct 26, 9:37 am, Lothar Kimmeringer [EMAIL PROTECTED] wrote: SalmanHemani schrieb: I should also add that I tested

Re: groundOverlay issue

2008-10-28 Thread Eric Ayers
Your bounds are probably wrapping back to zero. You can use the no arg LatLng.newInstance() to create bounds that cover the entire map. On Tue, Oct 28, 2008 at 6:21 AM, Vinz369 [EMAIL PROTECTED] wrote: Dear all, I'm trying to use integrate a groundOverlay in my application. Here is the

SerializationException: Type 'java.util.HashMap' was not included - GWT 1.4

2008-10-28 Thread Archer
Hello, I'm annotating a method, using typeArgs, which returns a list of maps and am getting a SerializationException that tells me 'java.util.HashMap' was not included in the sererialization policy. (Stack trace below). I'm unsure exactly how to represent a list of maps and have tried both *

Re: SerializationException: Type 'java.util.HashMap' was not included - GWT 1.4

2008-10-28 Thread Ian Petersen
On Tue, Oct 28, 2008 at 4:05 PM, Archer [EMAIL PROTECTED] wrote: I'm annotating a method, using typeArgs, which returns a list of maps and am getting a SerializationException that tells me 'java.util.HashMap' was not included in the sererialization policy. (Stack trace below). I'm unsure

GWT1.5 and struts 1.2

2008-10-28 Thread Krish
Hi, I need to integrate GWT 1.5 with struts 1.2 . I checked with struts 2.0 and it is working fine. But it is not working with struts 1.2. Is there any limitation with struts versions. Please clarify. Thanks, Krish --~--~-~--~~~---~--~~ You received this

Re: Suggestion: GWT port to Desktop

2008-10-28 Thread Lothar Kimmeringer
Ian Bambury schrieb: For example, if you are writing applications where browsers are forbidden, then why would you write it as a browser-based application and then convert to a desktop app and never use the browser version? If you're developing an application that should be sold as

Re: Client Authentication with SSL

2008-10-28 Thread Lothar Kimmeringer
adam.urban schrieb: The next step is to read out some attributes about a client- certificate to know something about the user. I found the following code snippet: Object o = request.getAttribute(javax.servlet.request.X509Certificate); If you're inside a RemoteServiceServlet replace

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

2008-10-28 Thread Lothar Kimmeringer
Salman Hemani schrieb: I resolved the issue by right clicking on the frame and setting the default encoding to UTF-8 and from that point onwards everything works even after you close the browser. It only works in your browser and I don't think that it will be accepted by the majority if you

Re: Gears 0.4 features in GWT Google API Library

2008-10-28 Thread Eric Ayers
I loaded up the patch into a branch so we could perform a public code review: http://code.google.com/p/gwt-google-apis/issues/detail?id=202 On Tue, Oct 28, 2008 at 6:58 AM, Eric Ayers [EMAIL PROTECTED] wrote: Hi Mark, Thanks for posting this. I haven't forgotten about your patch, but I'm

Re: GWT 1.5 internationalization

2008-10-28 Thread bc
that looks correct. It sounds like something else is going on. On Oct 28, 2:21 am, d [EMAIL PROTECTED] wrote: Hello All.      I am a new GWT developer. I am now having a trouble with internationalization. In GWT host mode, it keeps giving me the error message, ' No Resource for key

Re: Widget lifecycle

2008-10-28 Thread Sumit Chandel
Hi Yefim, When you say that some of the widgets in your application go away, do you mean that they are detached from the DOM (i.e. verticalPanel.remove(myWidget)) ? If so, you shouldn't need to worry about removing associated listeners from the widget itself. Once it's removed from the DOM, so

Re: published iphone apps written in GWT

2008-10-28 Thread davidroe
I think that being in the app store is likely to attract more users to your application as this is where people tend to look. Additionally, not all apps in the store cost money, so why not use it to organise web apps? That said, I think that the user expects to find applications that will run

Re: Widget lifecycle

2008-10-28 Thread Sumit Chandel
One thing I forgot to mention - if you do remove a widget from the DOM, its associated listeners will indeed also be removed. However, if you reattach that widget, its associated event listeners will also be reattached. In order to explicitly remove event listeners, you would need to call the

FormPanel submit does always fire FormSubmitCompleteEvent

2008-10-28 Thread Alex Rice
I think this seems like a bug, but I'm not sure. This only occurs for me when I am using: form.setEncoding(FormPanel.ENCODING_MULTIPART); form.setMethod(FormPanel.METHOD_POST); form.submit(); AND the target of the form responds with a non-html content-type (e.g. returns a Json response). Then

Re: FormPanel submit does always fire FormSubmitCompleteEvent

2008-10-28 Thread Thomas Broyer
On 29 oct, 00:32, Alex Rice [EMAIL PROTECTED] wrote: I think this seems like a bug, but I'm not sure. This only occurs for me when I am using: form.setEncoding(FormPanel.ENCODING_MULTIPART); form.setMethod(FormPanel.METHOD_POST); form.submit(); AND the target of the form responds with a

Re: How to disable incubator logging at runtime?

2008-10-28 Thread Fred Sauer
Achim, Just to update. If you build both GWT (trunk) and gwt-log from source, you now get custom log message formatting abilities in gwt-log. The format is defined in your .gwt.xml file. Fred Sauer [EMAIL PROTECTED] On Mon, May 19, 2008 at 1:25 AM, Achim [EMAIL PROTECTED] wrote: Hi Fred

Re: GWT-ext or ext-GWT?

2008-10-28 Thread rlaferla
On Oct 28, 3:25 am, alex.d [EMAIL PROTECTED] wrote: Ext GWT definitely. It's nativa Java-GWT code vs. Javascript wrapper. Even though you have to pay for it it's worth it. Sounds good but what are some of the problems that one may encounter with GWT-Ext? Also, GWT-Ext has GWT-Plus to connect

Re: Debugging support in compile mode?

2008-10-28 Thread rlaferla
On Oct 14, 11:38 am, JohnMudd [EMAIL PROTECTED] wrote: Any way to get the same sort of debugging support in compile mode as in shell mode? How about using gwt-log? http://code.google.com/p/gwt-log/ --~--~-~--~~~---~--~~ You received this message because you are

Need a unique identifier for all widgets in views

2008-10-28 Thread prads
Hi all, There is a requirement in my application (which has been in development since a year) that every widget needs to be identified by a unique value. The reason,I am told, for this is that having a unique identifier for all the widgets will simply the automation of functional testing. The

[gwt-contrib] Bug fixes have any priority ?

2008-10-28 Thread stuckagain
Hi, I know that it is always more fun to create new things than to fix small issues here and there. Everybody seems to working on new things... but I see practically no progress being made on fixing bugs expect if google brings out a new browser. I understand that GWT is from the same company,

[gwt-contrib] Re: r3869 - in branches/1_6_events/user: src/com/google/gwt/event/shared test/com/google/gwt/event/sh...

2008-10-28 Thread Thomas Broyer
Modified:   branches/1_6_events/user/src/com/google/gwt/event/shared/HandlerManager.jav a === === ---   branches/1_6_events/user/src/com/google/gwt/event/shared/HandlerManager.jav a     (original) +++  

[gwt-contrib] Re: Patch for DesignOOPHM wiki page

2008-10-28 Thread Thomas Broyer
On 27 oct, 23:59, John Tamplin [EMAIL PROTECTED] wrote: On Fri, Oct 24, 2008 at 10:31 AM, Thomas Broyer [EMAIL PROTECTED] wrote: Attached is a patch to update the DesignOOPHM wiki page to bring it in line with the branches/oophm code (re messages and values) Committed, with some

[gwt-contrib] Re: Bug fixes have any priority ?

2008-10-28 Thread Freeland Abbott
I don't suppose you could attach the fix, to save the next person those ten minutes? ;-) On Tue, Oct 28, 2008 at 10:19 AM, Thomas Broyer [EMAIL PROTECTED] wrote: On 28 oct, 13:51, Isaac Truett [EMAIL PROTECTED] wrote: Lastly, of course, possibly the best way to get an issue noticed is to

[gwt-contrib] Re: Iterables and Collections

2008-10-28 Thread Charles Fry
Any comments on this? On Oct 21, 6:13 pm, Charles Fry [EMAIL PROTECTED] wrote: 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

[gwt-contrib] Re: table columns

2008-10-28 Thread Charles Fry
I can see where that would be confusing, and the JavaDoc should be updated. Yes, whatever else happens I feel strongly that the JavaDoc should be updated. :-) It should be clear that: - row and cell coordinates aren't absolute - rowspans effect coordinates of overlapped rows in other columns,

[gwt-contrib] Re: GWT 1.5 Now Available

2008-10-28 Thread Sumit Chandel
Hi Sierpito, You should be able to download GWT at the link below. The page autodetects your OS and selects the right version to download for your platform. http://code.google.com/webtoolkit/download.html If that doesn't work for you, try downloading GWT from the release archive page (link

[gwt-contrib] Re: Bug fixes have any priority ?

2008-10-28 Thread Thomas Broyer
On 28 oct, 15:44, Freeland Abbott [EMAIL PROTECTED] wrote: I don't suppose you could attach the fix, to save the next person those ten minutes? ;-) Given how easy it is, I described it instead: http://code.google.com/p/google-web-toolkit/issues/detail?id=2257#c7 (even giving the file name

[gwt-contrib] Re: Bug fixes have any priority ?

2008-10-28 Thread Freeland Abbott
Thanks---I (obviously) hadn't checked the bug record, just this thread. I didn't want work lost! On Tue, Oct 28, 2008 at 1:16 PM, Thomas Broyer [EMAIL PROTECTED] wrote: On 28 oct, 15:44, Freeland Abbott [EMAIL PROTECTED] wrote: I don't suppose you could attach the fix, to save the next

[gwt-contrib] RR: gen2-ScrollTable filtering

2008-10-28 Thread dflorey
Hi, I've created a new issue and atttached a patch for adding column filters to the gen2 table package. http://code.google.com/p/google-web-toolkit-incubator/issues/detail?id=171 Cheers, Daniel --~--~-~--~~~---~--~~

[gwt-contrib] Re: RR: Two style guide tweaks proposed

2008-10-28 Thread Emily Crutcher
I would be more in favor of forbidding them everywhere then allowing them in only 1% of the cases, as knowing it is always the case that generics are one letter is more useful, and easier to create automatic checks for, then if it is true 99% of time. On Mon, Oct 27, 2008 at 1:17 PM, Ray Ryan

[gwt-contrib] Re: RR: Two style guide tweaks proposed

2008-10-28 Thread John Tamplin
On Tue, Oct 28, 2008 at 2:28 PM, Emily Crutcher [EMAIL PROTECTED] wrote: I would be more in favor of forbidding them everywhere then allowing them in only 1% of the cases, as knowing it is always the case that generics are one letter is more useful, and easier to create automatic checks for,

[gwt-contrib] Re: RR: Two style guide tweaks proposed

2008-10-28 Thread Ray Ryan
On Tue, Oct 28, 2008 at 11:32 AM, John Tamplin [EMAIL PROTECTED] wrote: On Tue, Oct 28, 2008 at 2:28 PM, Emily Crutcher [EMAIL PROTECTED] wrote: I would be more in favor of forbidding them everywhere then allowing them in only 1% of the cases, as knowing it is always the case that generics

[gwt-contrib] [google-web-toolkit commit] r3878 - releases/1.6/dev/core/test/com/google/gwt/dev/shell

2008-10-28 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Oct 28 11:45:00 2008 New Revision: 3878 Modified: releases/1.6/dev/core/test/com/google/gwt/dev/shell/StandardGeneratorContextTest.java Log: Fix build break. Note that this change was already committed in trunk and should not be merged to trunk again.

[gwt-contrib] Re: RR: Two style guide tweaks proposed

2008-10-28 Thread Ray Ryan
If we're going to differ from the community, the onus is on us have a very good reason to do so. I don't think we have one, and thus my preference for the single letter names. That said, Freeland's E, E, E case is not contrived, and it seems foolish to be so rigid as to forbid using something

[gwt-contrib] Re: RR: Two style guide tweaks proposed

2008-10-28 Thread Freeland Abbott
I'm good with that. On Tue, Oct 28, 2008 at 4:26 PM, Ray Ryan [EMAIL PROTECTED] wrote: So I'd modify my proposal thus: Parameterized type names should be one capital letter. However, if readability demands longer names (particularly due to having multiple parameters), the name should be

[gwt-contrib] What to do about widgets implementing listeners?

2008-10-28 Thread Emily Crutcher
Three important widgets implement listeners directly: DialogBox implements MouseListener. MenuBar implements PopupListener. TabPanel implements TabListener. The question is that in GWT 1.6, what contract do we want to support for the listener methods as we deprecate listeners and move to

[gwt-contrib] RR: Patch for ConstantMap

2008-10-28 Thread Amit Manjhi
Hi John, Please review the attached patch. Instead of extending FastStringMap, the patch just copies the relevant parts of FastStringMap. Thanks, Amit --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: RR: Two style guide tweaks proposed

2008-10-28 Thread Freeland Abbott
Not my hobby horse to ride, but I'm pretty sure the answer is because interfaces aren't nearly as meta as generics. If I have an interface, I know certain things about its API, and I know that my IDE can take me to the definition of that type-contract. If I have a generic type variable, I know

[gwt-contrib] Re: What to do about widgets implementing listeners?

2008-10-28 Thread Emily Crutcher
e caption directly. What's wrong with simple deprecating them and waiting until 2.0 to delete them? If someone has actually found a use for them, there's no need to break him. The javadoc can explain what you've stated above, that the methods are basically nondeterministic and therefore

  1   2   >