Re: Problem with launch GWT

2008-11-06 Thread Lothar Kimmeringer
koko schrieb: In my laptop I can't launch GWT host mode, Any one can help me please? I can give you my address and you send the laptop. With that I can surely help you ;-) Also I found if I disable my wireless connection it works fine?? What's worng ? Any one know ? Many Thanks!! [...]

Re: Event driven communication between independent GWT modules

2008-11-06 Thread francescoNemesi
Hello, I've been doing exactly what JEA asks using GWTx (http:// code.google.com/p/gwtx/)... it extends GWT to use java.beans.PropertyChange* which implement all that's needed for the Observer and clientside MVC patterns. As an example for JEA's request you could implement a user model that

Only digits in TextBox: differences between Firefox and IE

2008-11-06 Thread Schimki86
I use a KeyboardListener to check the typed character. I've seen this example in the book GWT in Action: public void onKeyUp(Widget sender, char keyCode, int modifiers) { if (!Character.isDigit(keyCode)) { ((TextBox)sender).cancelKey(); return; } } In IE it works but in FF the

Re: Only digits in TextBox: differences between Firefox and IE

2008-11-06 Thread mon3y
Hi try this if(keyCode!= KeyboardListener.KEY_BACKSPACE || keyCode!= KeyboardListener.KEY_DELETE){ if (!Character.isDigit(keyCode)) { ((TextBox)sender).cancelKey(); return; } } HTH :) On Nov 6, 11:05 am, Schimki86 [EMAIL PROTECTED] wrote: I use a

Re: Only digits in TextBox: differences between Firefox and IE

2008-11-06 Thread Lothar Kimmeringer
Schimki86 schrieb: I use a KeyboardListener to check the typed character. I've seen this example in the book GWT in Action: public void onKeyUp(Widget sender, char keyCode, int modifiers) { if (!Character.isDigit(keyCode)) { ((TextBox)sender).cancelKey(); return; } } In

Re: Only digits in TextBox: differences between Firefox and IE

2008-11-06 Thread Schimki86
Wow, that was quickly ^^ It works very well. Thank you (both) very much! 2008/11/6 Lothar Kimmeringer [EMAIL PROTECTED] Schimki86 schrieb: I use a KeyboardListener to check the typed character. I've seen this example in the book GWT in Action: public void onKeyUp(Widget sender, char

adobe air browser not support gmail.

2008-11-06 Thread jimmy6
I am planning to create web browser to display gwt project. The browser is created by using adobe air. I tested it by using this browser http://www.softpedia.com/get/Internet/Browsers/SmartFox.shtml . When i view the gmail. It contain the following text. For a better Gmail experience, use a

Re: Single application .. multiple RPC services

2008-11-06 Thread Litty Preeth
Hi Muhannad, Usually in GWT applications, you have one HTML page and the UI rendering is done dynamically using javascript. You can create different panels for different pages and add these panels to the RootPanel when a user clicks on hyperlinks (in ur case). And while rendering these panels

Re: state of hibernate + GWT 1.5

2008-11-06 Thread eggsy84
Hi David, We have been working GWT and Hibernate in most web apps we do. In the past we have simply wrote our own DTO to Persistent copying code (Your option 3) but a lot of people have recommended hibernate4GWT to take the pain out of doing this. This was complicated at the time and we had to

Re: adobe air browser not support gmail.

2008-11-06 Thread Thomas Broyer
On 6 nov, 10:49, jimmy6 [EMAIL PROTECTED] wrote: I am planning to create web browser to display gwt project. The browser is created by using adobe air. I tested it by using this browserhttp://www.softpedia.com/get/Internet/Browsers/SmartFox.shtml . When i view the gmail. It contain the

Re: Introducing GWT Beans Binding

2008-11-06 Thread Arthur Kalmenson
Hello, There's another data binding library that's being worked on here: http://code.google.com/p/gwt-data-binding/ Data binding was discussed in some length on GWTC here: http://groups.google.com/group/Google-Web-Toolkit-Contributors/browse_thread/thread/9242295c5e2cb5c5/609ae3692db0f3e9. It

Re: state of hibernate + GWT 1.5

2008-11-06 Thread Arthur Kalmenson
Hello Dave, We use a common domain object between the client and server side. The domain objects are JPA annotated beans, and they travel between the client and server. The only think you have to watch out for is PersistentSets and other Hibernate specific collections. Regards, -- Arthur

Re: state of hibernate + GWT 1.5

2008-11-06 Thread eggsy84
Of course the old persistent set problem! I remember that now and why we had to do DTO's. Good point Arthur! So did you have common domain objects for each persistent class? And had to convert the objects copying the properties over using something like BeanUtils or another way? On Nov 6,

Re: hot code replacement in external module

2008-11-06 Thread [EMAIL PROTECTED]
any clues at all? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe from this group, send email to

Re: GWT-ext or ext-GWT?

2008-11-06 Thread Arthur Kalmenson
This is a common theme, and as I said above, I highly recommend keeping far away from ext gwt or gwt ext. You can get the same shininess with some nice CSS. -- Arthur Kalmenson On Wed, Nov 5, 2008 at 3:08 AM, zebulon303 [EMAIL PROTECTED] wrote: I am trying to use ext-gwt for a few days,

Re: Single application .. multiple RPC services

2008-11-06 Thread Muhannad
Well, thank you Litty but I think there is still something missing to deal with. So I wrote a sample application and I'll send it to you at you gmail account (Sorry, I don't know how to attach a file here). Please review it .. and to be more clear again: this is what I don't know how to do. You

Re: Only digits in TextBox: differences between Firefox and IE

2008-11-06 Thread Thomas Broyer
On 6 nov, 10:27, Lothar Kimmeringer [EMAIL PROTECTED] wrote:     public static KeyboardListenerAdapter OnlyDigitListener = new KeyboardListenerAdapter() {         public void onKeyPress(final Widget sender, final char keyCode, final int modifiers) {             switch(keyCode){          

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-11-06 Thread JM
I fixed it by implementing GWT's IsSerializable interface instead of Java's Serializable... Can't figure out why it works on Winows env. JM On Nov 5, 4:01 pm, JM [EMAIL PROTECTED] wrote: ping2ravi I'm glad you came back to tell it's now working for you! But think of all those people with the

Re: How to create layout?

2008-11-06 Thread Thomas Broyer
On 5 nov, 12:06, DevUnion [EMAIL PROTECTED] wrote: Hello All, I've started GWT studying few days ago. And I have a lot of questions. For example, I need to create next layout: +--

Re: Single application .. multiple RPC services

2008-11-06 Thread gregor
Hi Muhannad, You will find that I have two divs on the home page (RPCServics.html): (1) menu div and (2) content div. In onModuleLoad() method I create two links a href='home'Home/a and a href='about'About Us/a. What I need exactly is when the user clicks Home link, then the content div

problem in display of grid FloatFieldDef column

2008-11-06 Thread suresh_psk
i declared the columnconfig of a EditorGridPanel as showed below when i tried to display nubmer without fraction value its not displaying fraction value eg: i need the value to be displayed as 12.00 but its displaying as 12 after i place the focus its diaplaying as i desired but i want it to be

Re: Sleep() or wait() inside valueChanged Listener

2008-11-06 Thread Ian Petersen
On Thu, Nov 6, 2008 at 9:29 AM, Anurag Tripathi [EMAIL PROTECTED] wrote: Can we call Sleep( ) or wait( ) method for some busy waiting inside valueChangedListener without any threads? Nope. --~--~-~--~~~---~--~~ You received this message because you are

Re: clicking outside the TreeItem firing onTreeItemSelected event

2008-11-06 Thread walden
It all depends on your expectations ;-). Actually, I do see the logic of selecting the node by clicking a spot in the tree whose vertical location is unambiguously associated with that node. My real question to you now is this: what is your particular use case? What is it you cannot do because

Support of web services

2008-11-06 Thread silise
Hello! I would like to know how requests to web services are handled with GWT. Indeed, I have a java code that sends a request (based on axis2 java) to a web service when the user clicks on a button. Thank you by advance sihem --~--~-~--~~~---~--~~ You received

Re: Sleep() or wait() inside valueChanged Listener

2008-11-06 Thread Paul Robinson
Can we call Sleep( ) or wait( ) method for some busy waiting inside valueChangedListener without any threads? Nope. But you can use com.google.gwt.user.client.Timer --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Sleep() or wait() inside valueChanged Listener

2008-11-06 Thread Anurag Tripathi
Hi, Can we call Sleep( ) or wait( ) method for some busy waiting inside valueChangedListener without any threads? Please let me know if anybody has idea on this. Thanks _Anurag --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

HorizontalSplitPanel and splitbar element

2008-11-06 Thread Byteo
Hi ! I have a problem with HorizontalSplitPanel! I need to catch the moving of SplitBar elementit's possible? I want to stop resizing the SplitBAr when the left widget width is 670px Please help me! Matteo. --~--~-~--~~~---~--~~ You received this message

Re: Single application .. multiple RPC services

2008-11-06 Thread walden
Muhannad, I agree with Litty and Gregor. Probably the best thing to bring clarity to you at this point would be for you to develop the canonical GWT single-page rich client application and use a single GWT RPC Service for all data needs. Get comfortable with that model (you can do a lot with

Re: clicking outside the TreeItem firing onTreeItemSelected event

2008-11-06 Thread Litty Preeth
Okk.. Actually in my tree, I have a popup menu for each item on the onTreeItemSelected event. The menu comes just below the selected item. Now if a user is clicking some where outside the tree item, he will see a popup menu appearing below the item gettng selected. This he wont feel as a normal

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

2008-11-06 Thread JohnMudd
Thanks Ian. I'll work on it a bit first and then try to restate it. On Nov 5, 7:12 pm, Ian Bambury [EMAIL PROTECTED] wrote: Hi John, Could you restate your problem as it is now. Ian http://examples.roughian.com --~--~-~--~~~---~--~~ You received this

Re: state of hibernate + GWT 1.5

2008-11-06 Thread David Durham, Jr.
On Thu, Nov 6, 2008 at 7:49 AM, Arthur Kalmenson [EMAIL PROTECTED] wrote: Hello Dave, We use a common domain object between the client and server side. The domain objects are JPA annotated beans, and they travel between the client and server. The only think you have to watch out for is

Re: History.newItem not firing onHistoryChanged under IE :-/

2008-11-06 Thread darkflame
*smacks forhead* doh! Cheers :) On Nov 3, 10:25 am, Thomas Broyer [EMAIL PROTECTED] wrote: On 2 nov, 15:49, darkflame [EMAIL PROTECTED] wrote: I searched this group, and could only seem to find the opposite problem...people wanting newItem not to fire onHistoryChange, but it does. In

Re: History.newItem not firing onHistoryChanged under IE :-/

2008-11-06 Thread darkflame
nope, darnit, still dosnt work. On Nov 3, 10:25 am, Thomas Broyer [EMAIL PROTECTED] wrote: On 2 nov, 15:49, darkflame [EMAIL PROTECTED] wrote: I searched this group, and could only seem to find the opposite problem...people wanting newItem not to fire onHistoryChange, but it does. In

Calling GWT-RPC-Services from something other than GWT

2008-11-06 Thread [EMAIL PROTECTED]
Hi there, Since i managed it to convince my company to use GWT in our new project, there were some questions open, which i couldn't reply and hope some of you can. We are a company which is experienced in Web Development with Java (JSP / JSF ) and some offline programs with .NET. Since there is

How to get browser-configured link color?

2008-11-06 Thread sibiquin
I want to set the color of a GWT widget to the color the user has configured for un-visited links in the browser. I don't want to just hard-code blue because I want the GWT app to honor the user's color settings. I cannot figure out how to find the browser's link color... I tried using

Re: HorizontalSplitPanel and splitbar element

2008-11-06 Thread gregor
Hi Byteo, HSP has a protected method: Element getSplitElement(). So you can extend HSP and make use of this. Element has getAbsoluteLeft() method so you can tell where the splitter is. HSP does not broadcast any events when the splitter is moved however, so I think you may have to override

Re: Sleep() or wait() inside valueChanged Listener

2008-11-06 Thread yunhui song
Timer timer = new Timer(){ public void run(){ //execute your task here } }; timer.schedule(1);//sleep 1 second or use DeferredCommand and IncrementCommand. check it on gwt document. Sammi http://code.google.com/p/openorg On Thu, Nov 6, 2008 at 6:29 AM, Anurag Tripathi [EMAIL

Problem displaying a ComboBox displayField inside a EditorGridPanel

2008-11-06 Thread OSXabi
Hello, I have a problem displaying a ComboBox displayField inside a EditorGridPanel. When I choose a ComboBox option it appears the setValueField associated key. Anyone knows about how I can fix this problem? I put an ID and a name in the combobox because when I selected this combobox there is a

Re: Calling GWT-RPC-Services from something other than GWT

2008-11-06 Thread Ian Petersen
You might want to look at RESTlet. I haven't used it myself, but it seems like a useful alternative to RPC that gives you multi-client functionality for free. Creating a non-GWT client that speaks GWT RPC is probably a huge time sink with little return on investment. If you search this forum's

Re: GWT -ext

2008-11-06 Thread David Durham, Jr.
On Wed, Nov 5, 2008 at 10:21 PM, ajay jetti [EMAIL PROTECTED] wrote: I hear that because gwt-ext is created from wrapping native gwt widgets they are a bit slow to work out, is it true? does it really effect the page loading or other things I suggest trying them out and determining for

Creating a main site *and* an admin site

2008-11-06 Thread jbdhl
I want to create a web site together with a separate administration site. Clearly the two sites will share a lot of code. I create them in the same dir with the following two commands $ applicationCreator com.mycompany.mysite.mainsite.client.MainSite $ applicationCreator

Close button in DialogBox title bar - Why so hard?

2008-11-06 Thread sibiquin
It seems that GWT 1.5 has made it very difficult to add custom widgets to the title area of a DialogBox. In prior releases the DialogBox was built from other base widgets (DockPanel, etc), but now it is built on the DecoratorPanel and the title bar is created by inserting elements into the DOM.

A variant of HorizontalSplitPanel?

2008-11-06 Thread Dirk Solomon
Hello! I'd like to implement in my application a panel like a one in Google Doc Reader: when you click on splitter the left side become hidden, and when you click again -- appears back. I tried to use HorizontalSplitPanel but I found that it is declared as 'final' so I can not even override

Integrating GWT with Rational Application Developer 7.0

2008-11-06 Thread Shyam
Just now completed GWT tutorial on eclipse. Now I need some instructions on how to integrate GWT with my J2EE project in Rational Application Developer. Can you suggest any tutorial or instructions? Thanks Shyam --~--~-~--~~~---~--~~ You received this message

Re: Response from Server is very slow

2008-11-06 Thread Lothar Kimmeringer
Filipe Sousa schrieb: It is most likely the serialization and de-serialization that is taking the most time. There really isn't anything you can do about this because it's the way XML-RPC works. It converts all your objects into a really big string (xml) sends it over to the clients which

SOAP Generator in GWT

2008-11-06 Thread Danny
Hi All, Around a year ago we had a requirement to link GWT directly to an ASP.NET web service using SOAP. Its been working well in our production application for some time now, however probably in need a some tweaks and added elegance. There is a code generator that works by analysing the WSDL

Re: HorizontalSplitPanel and splitbar element

2008-11-06 Thread gregor
Hi Byteo, I'm really sorry but I'm talking nonsense. HSP is still declared final so you can't extend it. For some reason I thought it had been changed. I think the only way you can do what you want to do is to copy the code into your own class and hack it. However that might be a bad idea

Re: Close button in DialogBox title bar - Why so hard?

2008-11-06 Thread Alejandro D. Garin
Hi, Look the WindowPanel Popup in the gwt-mosaic demo - http://code.google.com/p/gwt-mosaic/ Regards, On Thu, Nov 6, 2008 at 7:28 PM, sibiquin [EMAIL PROTECTED] wrote: It seems that GWT 1.5 has made it very difficult to add custom widgets to the title area of a DialogBox. In prior releases

GWT 1.5.2

2008-11-06 Thread Deep
I'm using Mac OS 10.5.5 Eclipse 3.3.2 and I migrated my project from GWT 1.4.61 to 1.5.2 and getting following error. Please help me. INFO] [gwt:compile {execution: default}] Exception in thread main java.lang.NoSuchMethodError: org.eclipse.jdt.internal.compiler.Compiler.init(Lorg/eclipse/jdt/

Re: adobe air browser not support gmail.

2008-11-06 Thread jimmy6
The docreader work well. I just know google provide such document for public but i dont know where can i register and create my document for my jimmy6 Framework http://code.google.com/p/jimmy6/ On Nov 6, 6:29 pm, Thomas Broyer [EMAIL PROTECTED] wrote: On 6 nov, 10:49,jimmy6[EMAIL PROTECTED]

Re: GWT 1.5.2

2008-11-06 Thread Tom Hjellming
I had this same problem last month when I moved to GWT 1.5.2 also. It turned out to be a conflict between GWT's dev library and the Jasper 2 JSP engine which apparently uses the Eclipse JDT Java compiler. The jasper-compiler-jdt.jar had conflicting versions of the

ImageBundle combines my images

2008-11-06 Thread Lucas86
I'm using the following code to set up an ImageBundle. I show the code after that I use to add the image. It all compiles fine, but when I access the images most of them come up as a combination of several of the images that I've added to the ImageBundle. Has anyone else had this problem? Is

Serialization Error

2008-11-06 Thread Joshua Partogi
Dear all, I encounter this problem: Caused by: com.google.gwt.user.client.rpc.SerializationException: Type 'lab.gwt. client.LatitudeLongitude' was not included in the set of types which can be seri alized by this SerializationPolicy or its Class object could not be loaded. For security

Re: ImageBundle combines my images

2008-11-06 Thread mon3y
Hi Are you using GWT 1.5? Have you tried putting the images in the same level as the MyImageBundle.java class? so it would look like @Resource(images/border_bottom.gif) (--or wherever your MyImageBundle.java is) public AbstractImagePrototype border_bottom(); i'm using 1.4 and it looks like

HTMLPanel and upgrade to GWT 1.5

2008-11-06 Thread Cens
In a project we started with GWT 1.4 we made large use of HTMLPanels whose contents are loaded from a remote service and transferred to the client upon panel construction. The widgets are being added in the client code and the HTML contents are full of cell tags similar to this td colspan=2

Re: clicking outside the TreeItem firing onTreeItemSelected event

2008-11-06 Thread Litty Preeth
Actually I wanted a popup menu when user clicks on the TreeItem. I couldnt find any ClickListener for TreeItem so I used onSelect. - Litty On Fri, Nov 7, 2008 at 4:26 AM, walden [EMAIL PROTECTED] wrote: I'm not sure he will see popping up a menu on item selection as normal behavior to begin

DOM.eventPreventDefault(event) is not work IE6 and IE7

2008-11-06 Thread jhpark
Sorry I can't write english well... see below source code... F1 key input = showHelp popupPanel.. public class TrackerEntryPoint implements EntryPoint { private EventPreview keyBoardShorcuts; private HorizontalPanel hPanel; public void onModuleLoad() {

Re: newbie question:Scroll textArea

2008-11-06 Thread alex.d
It automatically appears when your input is too wide. Isn't that enough? On 6 Nov., 21:52, Clerton Filho [EMAIL PROTECTED] wrote: Hi everyone, I'm newbie on this stuff, and I want to find a way to solve this thing: I have a textArea that shows messages to users and I want to put the scroll to

Re: DOM.eventPreventDefault(event) is not work IE6 and IE7

2008-11-06 Thread jhpark
I Test below source code case TrackerKeyCode.CODE_F1:   showHelp();    DOM.eventPreventDefault(event); DOM.eventCancelBubble(event, true);   propagate = false; break; } / brower F1 evnet work.. case

Disable text copy paste GWT

2008-11-06 Thread pawan581
Hi, I want to disable copy/paste from the HTML panel. I have used onBrowserEvent method, by using this i am able to disable all mouse events like selecting and right click on HTML panel. But when i do 'Ctrl A' it selects all the content of the panel. To resolve this issue i have used one

Re: GWT Conference?

2008-11-06 Thread Sumit Chandel
Hello everyone, The GWT Voices That Matter 2007 conference and Google I/O links posted above are excellent resources for GWT and other Google developer product related material. You can find more of the GWT VTM 2007 conference and other presentations posted on YouTube by doing a quick search for

[gwt-contrib] [google-web-toolkit] EmilyCrutcher commented on branch /branches/1_6_clean_events.

2008-11-06 Thread codesite-noreply
[google-web-toolkit] EmilyCrutcher commented on branch /branches/1_6_clean_events. Details are at http://code.google.com/p/google-web-toolkit/source/branch?spec=issue3083branch=%2Fbranches%2F1_6_clean_events Score: Neutral General Comment: Response to RawJsMapImpl comments. Line-by-line

[gwt-contrib] [google-web-toolkit] EmilyCrutcher commented on branch /branches/1_6_clean_events.

2008-11-06 Thread codesite-noreply
[google-web-toolkit] EmilyCrutcher commented on branch /branches/1_6_clean_events. Details are at http://code.google.com/p/google-web-toolkit/source/branch?spec=issue3083branch=%2Fbranches%2F1_6_clean_events Score: Neutral General Comment: The rest of the specific dom comments.

[gwt-contrib] event code review, part 1.

2008-11-06 Thread Emily Crutcher
Thanks a million for an awesome review! There are a few points that need discussion, I've logged them under http://code.google.com/p/google-web-toolkit/source/branch?spec=issue3083branch=/branches/1_6_clean_events reviews. --~--~-~--~~~---~--~~

[gwt-contrib] [google-web-toolkit] EmilyCrutcher commented on branch /branches/1_6_clean_events.

2008-11-06 Thread codesite-noreply
[google-web-toolkit] EmilyCrutcher commented on branch /branches/1_6_clean_events. Details are at http://code.google.com/p/google-web-toolkit/source/branch?spec=issue3083branch=%2Fbranches%2F1_6_clean_events Score: Neutral General Comment: Response to Alex's comments on the user package.

[gwt-contrib] Re: FYI: code reviews done through our googlecode project will CC this list.

2008-11-06 Thread Isaac Truett
I'm guessing the answer is no but I'll throw this out there... Is it possible to have the code review comment mails contain the comment history for each line of code that is commented on? Right now the comments in the emails are out of context. When each email has comments for several different

[gwt-contrib] [google-web-toolkit] [EMAIL PROTECTED] commented on branch /branches/1_6_clean_events.

2008-11-06 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on branch /branches/1_6_clean_events. Details are at http://code.google.com/p/google-web-toolkit/source/branch?spec=issue3083branch=%2Fbranches%2F1_6_clean_events Line-by-line comments: File:

[gwt-contrib] Re: FYI: code reviews done through our googlecode project will CC this list.

2008-11-06 Thread John Tamplin
On Thu, Nov 6, 2008 at 12:12 PM, Isaac Truett [EMAIL PROTECTED] wrote: Is it possible to have the code review comment mails contain the comment history for each line of code that is commented on? Right now the comments in the emails are out of context. When each email has comments for several

[gwt-contrib] Re: FYI: code reviews done through our googlecode project will CC this list.

2008-11-06 Thread Isaac Truett
The most useful information I found was buried a few layers under the email: Details are at http://code.google.com/p/google-web-toolkit/source/branch?spec=issue3083branch=%2Fbranches%2F1_6_clean_events 1. Follow this link at the top of the email. Comment by [EMAIL PROTECTED], Today (10

[gwt-contrib] Re: runAsync fragment loading bug in IE

2008-11-06 Thread Scott Blum
+spoon On Thu, Nov 6, 2008 at 4:47 AM, Cameron Braid [EMAIL PROTECTED] wrote: in trunk IFrameLinker.getModulePrefix out.print(function __gwtStartLoadingFragment(frag) {); out.newlineOpt(); out.indentIn(); out.print( var script = *$doc*.createElement('script'););

[gwt-contrib] Re: Error when trying to build

2008-11-06 Thread Alex Gorisse [pleyo]
Thanks Freeland, you give me the right way. For newbies like me on Linux, not simple to get trough it ;) path and java_home wasn't good. For others who have the same trouble, here the manip : - First, you need to setup global config in /etc/profile file for all users: # vi /etc/profile -

[gwt-contrib] Re: runAsync fragment loading bug in IE

2008-11-06 Thread Lex Spoon
On Thu, Nov 6, 2008 at 4:47 AM, Cameron Braid [EMAIL PROTECTED] wrote: I presume that the __gwtStartLoadingFragment needs to load the fragment into the same document as the function resides, therefore the $doc.createElement should probably be changed to document.createElement That sounds

[gwt-contrib] [google-web-toolkit commit] r3965 - branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client

2008-11-06 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 6 11:01:17 2008 New Revision: 3965 Modified: branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/ClickEvent.java branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/HasClickHandlers.java Log: Upgrading javadoc

[gwt-contrib] [google-web-toolkit] [EMAIL PROTECTED] commented on branch /branches/1_6_clean_events.

2008-11-06 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on branch /branches/1_6_clean_events. Details are at http://code.google.com/p/google-web-toolkit/source/branch?spec=issue3083branch=%2Fbranches%2F1_6_clean_events Score: Neutral General Comment: Some more comments on the branch -- this time

[gwt-contrib] Re: event code review, part 1.

2008-11-06 Thread Ray Ryan
Ray, it's pretty clear that we're going to land with the ability to instantiate and dispatch events in pure Java in tact, but Emily and I will need to document just why and how it's necessary, and beef up testing around the two paths. Offline I've already promised Kelly a couple of write ups on

[gwt-contrib] Re: event code review, part 1.

2008-11-06 Thread Emily Crutcher
Overall, I don't see any reason for not using HashMap except performance, and while I could see a speedup in the event dispatching, and better memory efficiency, I'm not sure event dispatching is a hot-spot in current application code. Actually the dispatch is already optimized for the

[gwt-contrib] [google-web-toolkit commit] r3967 - branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client

2008-11-06 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 6 12:20:35 2008 New Revision: 3967 Modified: branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/ClickEvent.java Log: Must add that final modifier in the RIGHT order. Modified:

[gwt-contrib] Re: event code review, part 1.

2008-11-06 Thread Kelly Norton
Ray C., No worries. We are planning to land a pure java code path through event dispatch code. My real objection in the review, which Emily and Ray forced out of me, is that we have never enumerated goals and use cases around sharing GWT-java code with other Java contexts. I want to make sure we

[gwt-contrib] [google-web-toolkit commit] r3968 - in branches/1_6_clean_events: reference/code-museum/src/com/google/gwt/museum user/src/co...

2008-11-06 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 6 12:41:58 2008 New Revision: 3968 Added: branches/1_6_clean_events/user/src/com/google/gwt/core/client/impl/PrivateMap.java - copied, changed from r3963, /branches/1_6_clean_events/user/src/com/google/gwt/core/client/impl/RawJsMapImpl.java

[gwt-contrib] [google-web-toolkit] kellegous commented on branch /branches/1_6_clean_events.

2008-11-06 Thread codesite-noreply
[google-web-toolkit] kellegous commented on branch /branches/1_6_clean_events. Details are at http://code.google.com/p/google-web-toolkit/source/branch?spec=issue3083branch=%2Fbranches%2F1_6_clean_events Line-by-line comments: File:

[gwt-contrib] [google-web-toolkit] kellegous commented on branch /branches/1_6_clean_events.

2008-11-06 Thread codesite-noreply
[google-web-toolkit] kellegous commented on branch /branches/1_6_clean_events. Details are at http://code.google.com/p/google-web-toolkit/source/branch?spec=issue3083branch=%2Fbranches%2F1_6_clean_events Line-by-line comments: File:

[gwt-contrib] [google-web-toolkit commit] r3969 - in branches/1_6_clean_events: reference/code-museum/src/com/google/gwt/museum/client/comm...

2008-11-06 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 6 12:57:38 2008 New Revision: 3969 Added: branches/1_6_clean_events/user/src/com/google/gwt/event/shared/GwtEvent.java (contents, props changed) - copied, changed from r3963,

[gwt-contrib] [google-web-toolkit] [EMAIL PROTECTED] commented on branch /branches/1_6_clean_events.

2008-11-06 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on branch /branches/1_6_clean_events. Details are at http://code.google.com/p/google-web-toolkit/source/branch?spec=issue3083branch=%2Fbranches%2F1_6_clean_events Line-by-line comments: File:

[gwt-contrib] Re: event code review, part 1.

2008-11-06 Thread Bruce Johnson
+1 to Kelly's sentiment @Ray C: Since you're probably doing more of this highly cross-compilable code than anyone else, we're keen to get your participation in helping formalize a set of design rules related to the portability/testability issue. We definitely don't want to break the rockin' cool

[gwt-contrib] [google-web-toolkit] kellegous commented on branch /branches/1_6_clean_events.

2008-11-06 Thread codesite-noreply
[google-web-toolkit] kellegous commented on branch /branches/1_6_clean_events. Details are at http://code.google.com/p/google-web-toolkit/source/branch?spec=issue3083branch=%2Fbranches%2F1_6_clean_events General Comment: DomEvent responses. Line-by-line comments: File:

[gwt-contrib] [google-web-toolkit] [EMAIL PROTECTED] commented on branch /branches/1_6_clean_events.

2008-11-06 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on branch /branches/1_6_clean_events. Details are at http://code.google.com/p/google-web-toolkit/source/branch?spec=issue3083branch=%2Fbranches%2F1_6_clean_events Score: Neutral General Comment: Oh. Pardon, there are more. Now looking at the

[gwt-contrib] [google-web-toolkit commit] r3970 - branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client

2008-11-06 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 6 13:26:13 2008 New Revision: 3970 Modified: branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/DomEvent.java Log: Revised DomEvent. Modified: branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/DomEvent.java

[gwt-contrib] [google-web-toolkit] [EMAIL PROTECTED] commented on branch /branches/1_6_clean_events.

2008-11-06 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on branch /branches/1_6_clean_events. Details are at http://code.google.com/p/google-web-toolkit/source/branch?spec=issue3083branch=%2Fbranches%2F1_6_clean_events Line-by-line comments: File:

[gwt-contrib] [google-web-toolkit] [EMAIL PROTECTED] commented on branch /branches/1_6_clean_events.

2008-11-06 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on branch /branches/1_6_clean_events. Details are at http://code.google.com/p/google-web-toolkit/source/branch?spec=issue3083branch=%2Fbranches%2F1_6_clean_events Score: Neutral General Comment: Looked at the quot;visualquot; museum tests. In

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

2008-11-06 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 6 14:20:26 2008 New Revision: 3973 Modified: branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/Widget.java Log: Straggler commit for renaming getIntEventType Modified:

[gwt-contrib] [google-web-toolkit commit] r3975 - in branches/1_6_clean_events: reference/code-museum/src/com/google/gwt/museum/client/defa...

2008-11-06 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 6 14:28:17 2008 New Revision: 3975 Modified: branches/1_6_clean_events/reference/code-museum/src/com/google/gwt/museum/client/defaultmuseum/VisualsForDialogBox.java

[gwt-contrib] [google-web-toolkit] [EMAIL PROTECTED] commented on branch /branches/1_6_clean_events.

2008-11-06 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on branch /branches/1_6_clean_events. Details are at http://code.google.com/p/google-web-toolkit/source/branch?spec=issue3083branch=%2Fbranches%2F1_6_clean_events Line-by-line comments: File:

[gwt-contrib] [google-web-toolkit commit] r3979 - in branches/1_6_clean_events: reference/code-museum/src/com/google/gwt/museum/client/comm...

2008-11-06 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Thu Nov 6 21:05:56 2008 New Revision: 3979 Modified: branches/1_6_clean_events/reference/code-museum/src/com/google/gwt/museum/client/common/EventReporter.java