Re: IE8 showing blank page

2010-03-11 Thread Thad
You might have a DOM problem that is hiding the DIV you wish to see. I'd recommend you download and install the IE Developer Toolbar from Microsoft. It's like Firebug, so you can compare your DOM on Firefox with that on IE. I was struggling with a CSS problem with IE till someone told of this

Two independent events that can be triggered at the same time -- how to control conflict?

2010-03-11 Thread Rob Tanner
I'm writing a self-service password reset program and I have two independent events that can both be triggered at the same time, but they conflict. Folks just simply changing their password would enter their ID and tab to the password field and enter their password. When the text box looses

Re: Communication between two browser windows

2010-03-11 Thread Daniel Le Clere
Umm... use common local storage under HTML 5 and have a change handle on the common dataset? yay? On Mar 11, 10:29 am, Anders dr.kr...@gmail.com wrote: Sorry, not for this one. The formpanel needs to be in a separate browser window. So I'm basically interested in knowing how to set the

GWT Grid vs. SmartGWT grid

2010-03-11 Thread Ken
I'm exploring using GWT for future work and for a project I'm looking at now I'm particularly interested in the Grid widget. The GWT Grid just doesn't compare to that provided by SmartGWT, but I'm concerned about using the SmartGWT libraries for several reasons: 1) It requires taking the whole

Re: Is DeferredCommand 'queue' executed in order of command addition?

2010-03-11 Thread sergey-miryanov
Oh, thank you! :) On Mar 11, 10:06 pm, Thomas Broyer t.bro...@gmail.com wrote: On Mar 11, 5:10 pm, sergey-miryanov sergey.mirya...@gmail.com wrote: Thank you for your answer, asking this question I look gchart sources in parallel :) I'm looking at gwt javadoc

Re: newbie question, problem adding jar library

2010-03-11 Thread Sripathi Krishnan
You may have accidentally enabled Google App Engine. Try disabling it for your project in eclipse. App Engine does not allow you to use databases, and you are likely to get the error you pasted. --Sri http://blog.530geeks.com 2010/3/12 Víctor Llorens Vilella victor.llor...@gmail.com At least

newbie help

2010-03-11 Thread _Robert_
Hi! I'm new to GWT but would like to get started with a simple application. I just can't figure out how hyperlinks work in GWT. public void onModuleLoad() { Hyperlink robert = new Hyperlink(Robert, robert); RootPanel.get(robert).add(robert); I guess I should

Unable to Add App to GWT Gallery

2010-03-11 Thread Carl
Hi, I submitted my app to the GWT Gallery on 3/4/2010, and was given the following URL: http://gwtgallery.appspot.com/about_app?app_id=102001 This page looks fine, but the app (Lexifind Word Finder - http://www.lexifind.com) never appeared on the Most Recent Projects column of the main GWT

Re: GWT + URL Rewriting (Apache)

2010-03-11 Thread Fabiano
Sometimes, having the application relative path different form the relative path inside the AP (context) causes seriaization issues. In case you like to mount :8080/MyApps/ to :80/site/things/ MyApps serialization is not going to work. My suggestion is: Load the nocache.js using relative

Re: Image inside button

2010-03-11 Thread Pondmouse
Why not try insert a GWT image and add clickhandlers to the image, the image then becomes your button. On Mar 8, 2:38 pm, gadaleta.marco gadaleta.ma...@gmail.com wrote: can you send me an example please? On 8 Mar, 13:21, mariyan nenchev nenchev.mari...@gmail.com wrote: use

Re: UiBinder with background-image and ImageResource

2010-03-11 Thread MH
Well, the problem does not seem to be the image. The CssResource interface I wrote is compiled properly, the XML I made for thew widget works fine as well. It look like if the ui:with does not throw ensureInjected or something. The styles are applied, but they are empty. Regards, mh 2010/3/11

Re: Conditional code splitting

2010-03-11 Thread Ed
I use code spliting a lot with success. Example: user clicks on another menu item or tab item, a new piece of code is loaded from the backend. Your request, you can easily do it yourself through deferred binding. Just put an adapter/bridge class between your code and the method GWT.runAsAsync.

Re: GWT 2.0 + Hibernate + Gilead

2010-03-11 Thread Olivier
Hello, I finally solved the problem here : https://sourceforge.net/projects/gilead/forums/forum/868076/topic/3585579/index/page/1 Regards. On 9 mar, 10:54, Olivier olivier.be...@gmail.com wrote: Hello, I am trying to integrate gilead in my GWT - Hibernate application. I followed this

Re: Cross Site Linker (xs), Debugging doesn't work

2010-03-11 Thread nino ekambi
I think the Developpement Mode does not work with the xs linker correct me if i m wrong ... Greets Nino 2010/3/8 Fabiano ftar...@gmail.com Hi, I am using the xs linker in order to solve a bunch of domain's problems. This linker is working fine, and linker's lacking features are not a

Re: UiBinder with background-image and ImageResource

2010-03-11 Thread Thomas Broyer
On Mar 10, 5:52 pm, Michael michael.guy...@gmail.com wrote: Hi there, I'm having a go at using the declarative layout and was wondering if there's a way of using an image declared in a ClientBundle as a background-image in the ui:style section, thus: ui:UiBinder  

Re: Is DeferredCommand 'queue' executed in order of command addition?

2010-03-11 Thread Thomas Broyer
On Mar 11, 6:28 am, sergey-miryanov sergey.mirya...@gmail.com wrote: Hi all, I google it, but without results. Is DeferredCommand guaranteed that command queue will be executed in order of command addition? Yes. (looking at the code would have probably been faster than googling around and

Re: EJB 3 + Guice2.0 + Tomcat 6 / Glassfish 3

2010-03-11 Thread opn
ok thank you, ill try something like bind(EJB3TestRemote.class) .annotatedWith(Names.named(EJB3TestRemote)) .toProvider(fromJndi(EJB3TestRemote.class,java:module/ EJB3Test)); and see if it works for me : )! hopefully i can answer the other questions through trying it out, then. Greetings from

Re: Intercepting all gwt rpc calls on gwt (browser) side.

2010-03-11 Thread Alexander Cherednichenko
Sorry. Think I did not make the whole problem well-understood. I need to intercept the thing not in the serverside, but in client side! E.g. I can not import javax.servlet.filter - it is a part of Servlet API which lives in Servlet container, and I need to get info about RPC calls in GWT part -

Re: GWT website disappear when I activate DragonFly on Opera

2010-03-11 Thread Thomas Broyer
On Mar 10, 4:02 pm, Amine Ouahman amine.aitouah...@gmail.com wrote: As I open DragonFly, only the HTML backgroud stand still, all the javascript interface disappear, and I saw no errors. It could be that DragonFly injects an element into the page that triggers the same bug as

Re: EJB 3 + Guice2.0 + Tomcat 6 / Glassfish 3

2010-03-11 Thread Christian Lercher
On 11.03.10, at 11:53, opn wrote: Greetings from the sunny germany! Sunny germany? :-) Grüße aus dem verschneiten Österreich! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Application Context for RPC calls.

2010-03-11 Thread Ed
Do RPC callers and callees all need to reside under the same application context in jetty? -- 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-tool...@googlegroups.com. To unsubscribe from this

Re: Extending UI-Binder

2010-03-11 Thread Gal Dolber
It should be... I have seen the custom parsers on the gwt source, but I didn't see if is there any extension system to declare one of your own. You can still do this: g:HorizontalPanel g:HTML SVG rect ... / circle ... / /SVG /g:HTML /g:HorizontalPanel 2010/3/11 Jan Ehrhardt

Re: Extending UI-Binder

2010-03-11 Thread Chris Lercher
Well, you can import any package, and bind it to a namespace prefix as explained here: http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html#Hello_Widget_World I imagine, that it would also be possible to have an addRect(), addCircle() method etc in your SVG class (or maybe some

Adding Adobe Flash SWF using RichTextArea in GWT 1.7.1

2010-03-11 Thread Ignat Alexeyenko
Hello, Everyone! I want to add ability for users to upload flash files using RichTextArea. I have a problem - embedded flash is not displayed in the editor (preview). Embeded content is displayed in HTML editor view, but isn't displayed in WYSIWYG mode. Here is how flash content is displayed in

Re: Cross Site Linker (xs), Debugging doesn't work

2010-03-11 Thread Fabiano
On Mar 11, 11:11 am, nino ekambi jazzmatad...@googlemail.com wrote: I think the  Developpement Mode does not work with the xs linker correct me if i m wrong ... This is my (about) assetion but it has not been pointed into documentation (or I missed). -- You received this message because

Re: GWT 2.0 + Hibernate + Gilead

2010-03-11 Thread Giuseppe La Scaleia
Hi Oliver i suggest you to use Apache Dozer with Hibernate , that allows you to create objects as a mirror of your model bean. For Information http://dozer.sourceforge.net/ Regards Giuseppe 2010/ 3/11 Olivier olivier.be...@gmail.com Hello, I finally solved the problem here :

Re: Adding Adobe Flash SWF using RichTextArea in GWT 1.7.1

2010-03-11 Thread Ignat Alexeyenko
It is very interesting thing, that Google Chrome browser displays content well in WYSIWYG mode. -- Kind regards, Ignat Alexeyenko. On Thu, Mar 11, 2010 at 3:35 PM, Ignat Alexeyenko ignatalexeye...@gmail.com wrote: Hello, Everyone! I want to add ability for users to upload flash files using

A panel with header

2010-03-11 Thread Vik
Hie I was looking for a widget which is having a header region. I could not find any widget. Please advise. In case there is no such widget then can someone please help me to achieve the layout like http://www.sakshum.com/ui/page/DonorRegister.jsp See the individual sections like Basic Info,

Re: EJB 3 + Guice2.0 + Tomcat 6 / Glassfish 3

2010-03-11 Thread opn
Hello, me again with another question... I now successfully injected a stateless session bean into my plain java class. In that stateless session bean im using an entitymanager like this: @PersistenceContext(unitName=MyPU) EntityManager entityManager; The problem is, it is always null.

Re: handle to innerHTML objects

2010-03-11 Thread Paul Stockley
Try changing you new class to take a HTML string as an argument. Then create a TableElement in the constructor, call setInnerHTML on this element. Then pass this to setElement on the widget. Then you should be able to add the widget to your panel. -- You received this message because you are

Re: EJB 3 + Guice2.0 + Tomcat 6 / Glassfish 3

2010-03-11 Thread Gianluigi
I'm glad that u found the article interesting ;-) Gianluigi - Messaggio originale - Hello! I found an interesting blog entry today and tried to implement it in a test application. Here is the url:

Re: Hosted Mode Problem in fedora 12

2010-03-11 Thread Raul
I did not get a solution yet... My hosted mode browser is unable to recognize any of the RemoteService Interface. Thats why I am not been able to debug my application in Hosted mode since it is not recognizing the interfaces through which I can make calls to server. I am on Fedora 12, and I am

How to allow connection in gwt browser plugin again that has been accidentally blocked?

2010-03-11 Thread googelybear
Hi, I have a very stupid problem: I tried to connect with my Windows/IE test machine to my gwt app using the gwt browser plugin and in the popup where it asks if the connection should be allowed I clicked no and remember this choice (or similar). But now I cannot find where this setting is stored

Re: How to allow connection in gwt browser plugin again that has been accidentally blocked?

2010-03-11 Thread googelybear
I was just able to solve this myself: In windows this setting is stored in the great registry deep down somewhere: HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\InternetRegistry \REGISTRY\USER\{weird number}\Software\Google\Google Web Toolkit\gwt- dev-plugin.accessList On Mar 11, 3:37 

Re: GWT + Authorization form

2010-03-11 Thread aw4y
i've done it using a static serializable object (imagine it works like a session). Something similar to: public class SessionData implements Serializable { private static User user = null; .. ... } how it works: -i call a rpc method passing user and md5'ed pass; -the remote method check if

Re: EJB 3 + Guice2.0 + Tomcat 6 / Glassfish 3

2010-03-11 Thread Gianluigi
I think he probably means that you could just do it like this: bind(EJB3TestRemote.class).toProvider(fromJndi(EJB3TestRemote.class,EJB3Test/ remote)); And then simply: @Inject private EJB3TestRemote test; exactly this is the way of use it without @Name selector ...if you don't want to bind

Re: handle to innerHTML objects

2010-03-11 Thread BCR666
I've gone a slightly different way. ... HTMLTable tblDetails = new Grid(2, 2); tblDetails.getElement().setInnerHTML(innerHtml); FocusPanel fPanel = new FocusPanel(tblDetails); TableFocusHandler handler = new TableFocusHandler(); fPanel.setTabIndex(4); fPanel.addFocusHandler(handler);

IE8 showing blank page

2010-03-11 Thread skippy
I have read the postings on this problem and tried the work arounds with no luck. Has anyone sovled this problem? Any more current information would be great. Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Adding a SimplePanel to an AbsolutePanel z-index issue

2010-03-11 Thread David E.
How do I ensure the SimplePanel I am adding to an AbsolutePanel always gets added on-top of everything else in the AbsolutePanel? (Z-index issue). In the development browser and IE it always adds the SimplePanel ontop but when compiled and run on FireFox or Chrome it always ends up underneath.

noserver option, maven, and real-time java code compilation

2010-03-11 Thread romant
Hi, some of you definitely has some experience with the noserver option. I use GWT 2.0.2, gwt-maven-plugin version 1.2. I run my GWT application, compiled by maven with the noserver option turned on, in Tomcat. In Tomcat the /webapp directory contains a symbolic link to the /target/myapplication

Re: EJB 3 + Guice2.0 + Tomcat 6 / Glassfish 3

2010-03-11 Thread Chris Lercher
On Mar 11, 3:42 pm, Gianluigi dava...@yahoo.it wrote: ...if you don't want to bind different EJB3TestRemotes to different names. not different names, different IMPLEMENTATIONS. The @Names annotation is a selector to choose with concrete implementation of the local/remote ebj interface

Re: noserver option, maven, and real-time java code compilation

2010-03-11 Thread olivier nouguier
Rather than using sym link you could use the wtp manifest to deploy the GWT stuff. wb-resource deploy-path=/search source-path=war/search/ Then then dev mode will work (refresh) ... as long as you provide the magic url parameter :) On Thu, Mar 11, 2010 at 4:08 PM, romant roman.te...@gmail.com

Re: Is DeferredCommand 'queue' executed in order of command addition?

2010-03-11 Thread sergey-miryanov
Thank you for your answer, asking this question I look gchart sources in parallel :) I'm looking at gwt javadoc (http://google-web-toolkit.googlecode.com/ svn/javadoc/2.0/index.html?overview-summary.html), but I don't see Scheduler class (I'm very new in gwt) Sergey On Mar 11, 3:45 pm, Thomas

Adding XMPP server module

2010-03-11 Thread andrew_d_mackenzie
I've started learning GWT and I am working through the tutorials without too much trouble. Using eclipse BTW. For my project I wanted to add an XMPP Agent that would answer XMPP messages on the server. So, I took the code explained in the example for XMPP in

Exception Handling on GWT RPC Service

2010-03-11 Thread Giovanni
Hi all, sorry if my question has been already posted but I was not able to find anything.. I have the following method on the my RPC Service class extending the RemoteServiceServlet: public Data getData(String param) { Data result; try { result = getData(); }

RPC and MapString, Object serialization problem

2010-03-11 Thread kriswpl
Hi, I tried to invoke a method in interface thru RPC. Interface method is: public MapString, Object test(); and in implementation I put into returned map, object java.util.Long (which is serializable:) ): map.put(long, new Long(1)); and I get an error - see below: BUT, when I add another method

Has anyone integrated Google Website Optimizer into a GWT project

2010-03-11 Thread Will Bunker
Just tried my first experiment doing so and the website optimizer code replaced everything on the screen instead of the section of code it normally does using a regular web page. Couldn't find anyone who had posted about doing so, wondering if anyone has any experience using these tools together.

Yahoo maps plugin for gwt

2010-03-11 Thread rautpankaj
Hi, Is there a way I can use the Yahoo Maps Api from gwt in Eclipse? Can it be done like google maps, where I just include a .jar file in the project and make api calls. I tried searching the net for a wrapper or a plugin but could not find a way. I am writing an app in Java with an HTML/JS

Multiple RPC calls being returned from server to the wrong callback

2010-03-11 Thread Jayferd22
Hi all, We have started up with GWT 2.0 recently and am coming across a strange problem regarding RPC calls. We have one class which makes 2 RPC calls to the server through the same service. We have created Syncrhonys and Asynchronys variants of the same class which handles the request and a

newbie question, problem adding jar library

2010-03-11 Thread khalid
Hello every one I am making this simple application where the user fills some fields and makes an RPC to save these info in a DB anyway the server method uses the popular: Connection , PreparedStatement ,... etc classes which are in the mysql-connector jar file I think so ^_^ I have followed

Why and How does GWT extract these subset of the core Java class libraries ?

2010-03-11 Thread mousedolly2002
I have worked with GWT for a while. And I want to know why and how does GWT extract these subset of the core Java class libraries ? as http://code.google.com/intl/ja/webtoolkit/doc/latest/RefJreEmulation.html#Package_java_sql anyone can tell me. And, I want to know if there is any best practice

generating javascript for innerclass methods in GWT

2010-03-11 Thread krithi
Iam trying to generate javascript for an inner class. My inner class is as shown public final class common { public static final class ProtocolDocumentOperation { public static Builder newBuilder() { return Builder.create(); } } } = In my entry point class when I

java.rmi.RemoteException:This service requires wsse:Security, which is missing

2010-03-11 Thread dilshad amar
Hi, I am trying to access a secured web service running on JBoss5 on different machine. I am trying to access this web service through my GWT application but getting following exception:- java.rmi.RemoteException: This service requires wsse:Security, which is missing. at

development mode with tomcat

2010-03-11 Thread elsurdo
hello i've recently started working with GWT and i've a problem. I need creating a web aplication using gwt and j2ee, i'm using ecplipse with gwt pligin,AppsEngine and tomcat to run muy servlet. But when i rum my application it run on jetty server. I don't andertend how to run it on Tomcat on

Debugging GWT 2.0 is pain

2010-03-11 Thread JazzyJava
Helllo, I am testing an upgrade of our appliation fro GWT 1.7 to 2.0. All is fine, except I find that debugging now is a much bigger pain than it was in 1.7. I have a feeling I am missing something, since it's hard for me to believe that it is so much more inconvinient now. In GWT 1.7 Hosted

Re: Debugging GWT 2.0 is pain

2010-03-11 Thread Chris Ramsdale
Comments in line below: On Thu, Mar 11, 2010 at 11:40 AM, JazzyJava ole...@gmail.com wrote: Helllo, I am testing an upgrade of our appliation fro GWT 1.7 to 2.0. All is fine, except I find that debugging now is a much bigger pain than it was in 1.7. I have a feeling I am missing something,

Re: RPC and MapString, Object serialization problem

2010-03-11 Thread Paul Robinson
kriswpl wrote: Interface method is: public MapString, Object test(); and in implementation I put into returned map, object java.util.Long (which is serializable:) ): map.put(long, new Long(1)); Where do I do it wrong? GWT does a great job of putting as little into the javascript as

Re: Is DeferredCommand 'queue' executed in order of command addition?

2010-03-11 Thread Thomas Broyer
On Mar 11, 5:10 pm, sergey-miryanov sergey.mirya...@gmail.com wrote: Thank you for your answer, asking this question I look gchart sources in parallel :) I'm looking at gwt javadoc (http://google-web-toolkit.googlecode.com/ svn/javadoc/2.0/index.html?overview-summary.html), but I don't see

Re: noserver option, maven, and real-time java code compilation

2010-03-11 Thread romant
The thing is that I don't use maven in Eclipse, I just use maven installed in my operating system. There must be a configuration option available for the gwt-maven- plugin in the pom.xml file or something like that. I am sure not everyone uses maven integrated in Eclipse. But thanks for the hint

Re: A panel with header

2010-03-11 Thread Thomas Broyer
On Mar 11, 3:03 pm, Vik vik@gmail.com wrote: Hie I was looking for a widget which is having a header region.  I could not find any widget. Please advise. In case there is no such widget then can someone please help me to achieve the layout

Re: newbie question, problem adding jar library

2010-03-11 Thread Chris Lercher
Hi, adding it to the build path isn't enough in this case. The jar has to be found by the server at runtime. To achieve this, you can put the jar in the directory war/WEB-INF/lib. Chris On Mar 11, 12:25 am, khalid khalid@gmail.com wrote: Hello every one I am making this simple application

Keeping Dialog Boxes Centered after Window Events

2010-03-11 Thread Patrick Tucker
I have extended GWT's DialogBox in an attempt to make it capable of staying centered in the browser window. I added the following code to the show method: super.show(); if (rReg == null) rReg = Window.addResizeHandler(this); if (sReg == null) sReg =

Re: Debugging GWT 2.0 is pain

2010-03-11 Thread JazzyJava
Thanks for the quick response. I looked at the link (https://groups.google.com/group/google-web- toolkit/msg/e6d2814e79bc3a45), and it looks like a hack. It will only work if I have some centralized URL generation logic, AND if I pass the gwt.codesvr=x query param at some correct prior point

Re: noserver option, maven, and real-time java code compilation

2010-03-11 Thread romant
Maybe if someone could put here the pom.xml file and the command with all the parameters which he uses to run maven to compile a GWT app in the development mode, that could help. Thnx. On 11 bře, 18:08, romant roman.te...@gmail.com wrote: The thing is that I don't use maven in Eclipse, I just

InfoWindow problem

2010-03-11 Thread Fran
Hi, I have a problem with InfoWindow and Google Maps API in GWT. If I use this code: InfoWindow info = map.getInfoWindow(); info.open(marker, new InfoWindowContent(verticalpanel)); I get a error that I cant understand: com.google.gwt.core.client.JavaScriptException: (TypeError): Object

Re: InfoWindow problem

2010-03-11 Thread Eric Ayers
Did you create a default marker or did you add a custom icon? If it is the latter, you need to set several attributes on it or you'll get weird errors like this. You might try searching through the gwt-google-apis group. Does this thread help?

Re: newbie question, problem adding jar library

2010-03-11 Thread Víctor Llorens Vilella
At least in netbeans, there's an option in to include selected library in war file. On 11 March 2010 18:37, Chris Lercher cl_for_mail...@gmx.net wrote: Hi, adding it to the build path isn't enough in this case. The jar has to be found by the server at runtime. To achieve this, you can put

Re: InfoWindow problem

2010-03-11 Thread Fran
I use a default icon. This is all the code: MarkerOptions opts = MarkerOptions.newInstance(Icon.DEFAULT_ICON); opts.setDraggable(true); final Marker marker= new Marker(latlng,opts); marker.addMarkerDragEndHandler(new MarkerDragEndHandler(){

Re: InfoWindow problem

2010-03-11 Thread Eric Ayers
Try not setting the icon at all in MarkerOptions. Check the code for the draggable marker exampls in HelloMaps: http://code.google.com/p/gwt-google-apis/source/browse/trunk/maps/samples/hellomaps/src/com/google/gwt/maps/sample/hellomaps/client/DragMarkerDemo.java

Re: InfoWindow problem

2010-03-11 Thread Fran
the last IF manage only a marker by map. I can disable the drag and the result is the same. On 11 mar, 19:56, Eric Ayers zun...@google.com wrote: Try not setting the icon at all in MarkerOptions.  Check the code for the draggable marker exampls in HelloMaps:

Re: InfoWindow problem

2010-03-11 Thread Eric Ayers
I still think the problem is because you are specifying an icon when creating MarkerOptions. Did you change the way you call the constructor for MarkerOptions? Your code: MarkerOptions opts = MarkerOptions.newInstance(Icon.DEFAULT_ICON); opts.setDraggable(true); final Marker marker= new

Re: InfoWindow problem

2010-03-11 Thread Fran
same error 2010/3/11 Eric Ayers zun...@google.com I still think the problem is because you are specifying an icon when creating MarkerOptions. Did you change the way you call the constructor for MarkerOptions? Your code: MarkerOptions opts = MarkerOptions.newInstance(Icon.DEFAULT_ICON);

Re: InfoWindow problem

2010-03-11 Thread Eric Ayers
Does the HelloMaps sample work for you? On Thu, Mar 11, 2010 at 2:14 PM, Fran fra...@gmail.com wrote: same error 2010/3/11 Eric Ayers zun...@google.com I still think the problem is because you are specifying an icon when creating MarkerOptions. Did you change the way you call the

Re: InfoWindow problem

2010-03-11 Thread Fran
The error shows at the line info.open ... 2010/3/11 Fran fra...@gmail.com same error 2010/3/11 Eric Ayers zun...@google.com I still think the problem is because you are specifying an icon when creating MarkerOptions. Did you change the way you call the constructor for

Re: InfoWindow problem

2010-03-11 Thread Eric Ayers
If this is happening when your app starts up, one more thing you might try is using a DeferredCommand (or ScheduleDeferred) to open the window. On Thu, Mar 11, 2010 at 2:16 PM, Fran fra...@gmail.com wrote: The error shows at the line info.open ... 2010/3/11 Fran fra...@gmail.com same

Re: InfoWindow problem

2010-03-11 Thread Fran
Is not in the starts. Its when a click a button to search in a MySQL db. The results shows in the map. If only one result I will show the infowindow. 2010/3/11 Eric Ayers zun...@google.com If this is happening when your app starts up, one more thing you might try is using a DeferredCommand (or

Re: Multiple RPC calls being returned from server to the wrong callback

2010-03-11 Thread Fabiano
Are you doing always Async calls, on the client's side there is no difference between syncronized methods or not syncronized ones (and classes too). Syncro stuff is somewhat ignored (this is managed right on the server side). On client side, being JsVM single threaded, there are not concurrency's

derpc default constructor

2010-03-11 Thread otismo
I just tried using deRPC and am running into a problem since deRPC doesn't invoke the default constructor upon deserialization. I have a class like this: public class SomeClass { private transient CarouselText carouselText; private SomeClass() { carouselText = (CarouselText)

Re: InfoWindow problem

2010-03-11 Thread Fran
I get this error with HelloMaps com.google.gwt.core.client.JavaScriptException: (TypeError): undefined is not a function stack: TypeError: undefined is not a function at DOMWindow.CALL_NON_FUNCTION_AS_CONSTRUCTOR (native) at unknown source 2010/3/11 Fran fra...@gmail.com Is not in

Re: Keeping Dialog Boxes Centered after Window Events

2010-03-11 Thread mmoossen
Hi, patrick! i think your problem is just this bug: http://code.google.com/p/google-web-toolkit/issues/detail?id=4720can=4 i had a very similar setup and using the recommended patch did solve all my problems. HTH Michael On Mar 11, 6:37 pm, Patrick Tucker tucker...@gmail.com wrote: I have

Re: InfoWindow problem

2010-03-11 Thread Fran
Ok, Its works now. But I cant set a Widget to the popupmarker with Hello Maps 2010/3/11 Fran fra...@gmail.com I get this error with HelloMaps com.google.gwt.core.client.JavaScriptException: (TypeError): undefined is not a function stack: TypeError: undefined is not a function at

Re: beta eclipse plugin - running in noserver mode with tomcat - having troubles

2010-03-11 Thread Keith Platfoot
Brian, I think the issues you were having with adding the -noserver argument to your launch configuration were probably the result of a known issue with the Eclipse plugin 1.3 preview (check the 1.3 announcement email for details). This has since been fixed, so once 1.3 final is released

Re: InfoWindow problem

2010-03-11 Thread Fran
Some curious. This code works fine: marker.addMarkerClickHandler(new MarkerClickHandler() { public void onClick(MarkerClickEvent event) { InfoWindow info = map.getInfoWindow(); InfoWindowContent contents = new

Re: InfoWindow problem

2010-03-11 Thread Eric Ayers
Maybe the issue is that you can't open an info window on a marker that isn't attached to the map. On Thu, Mar 11, 2010 at 2:59 PM, Fran fra...@gmail.com wrote: Some curious. This code works fine: marker.addMarkerClickHandler(new MarkerClickHandler() { public void

Re: InfoWindow problem

2010-03-11 Thread Fran
sre ! Thanks Eric, you are the best! :) 2010/3/11 Eric Ayers zun...@google.com Maybe the issue is that you can't open an info window on a marker that isn't attached to the map. On Thu, Mar 11, 2010 at 2:59 PM, Fran fra...@gmail.com wrote: Some curious. This code works fine:

eclipse plugin - user define composites

2010-03-11 Thread bkbonner
Sometimes when I create a custom composite, the editor for the UIBinder view doesn't recognize the tag when I enter firstfewcharacters... On some of the composites in the project, it correctly creates the import and completes the tag. I can't figure out what is different about some of the

Earth Map won't load

2010-03-11 Thread Chad
Hi all, I have an app that has been working fine (in development and on the web) with the map integrated. Now, I want to add the Google Earth plug- in as a map type. When I first added the code to set the current map type to the earth map, it didn't work in Chrome, but it did work in IE and FF.

Re: [gwt-contrib] Re: Give a better error message when RunAsyncCode.runAsyncCode is passed something

2010-03-11 Thread Scott Blum
Yeah.. just remember someone might also do funky things with the passed-in class literal, like .getName() or == Foo.class. So most likely it needs to wrap the real class object and generate unbox code if you use the literal itself. On Thu, Mar 11, 2010 at 2:28 AM, Ray Cromwell

[gwt-contrib] Re: allow skipping unit tests in development or production mode

2010-03-11 Thread Lex Spoon
On Wed, Mar 10, 2010 at 7:17 PM, amitman...@google.com wrote: LGTM on this quick and dirty solution. Eventually, we do want something like John suggests -- it is mostly up to you to either go with this or the general solution. I feel the same way. A quick and dirty solution would be very

[gwt-contrib] Re: allow skipping unit tests in development or production mode

2010-03-11 Thread Amit Manjhi
yeah the implementation looks fine On Mar 11, 2010 8:32 AM, Lex Spoon sp...@google.com wrote: On Wed, Mar 10, 2010 at 7:17 PM, amitman...@google.com wrote: LGTM on this quick and dirty sol... I feel the same way. A quick and dirty solution would be very valuable so that I can add tests for

[gwt-contrib] Date adds an hour to the day before Daylight Saving

2010-03-11 Thread jlabanca
Reviewers: Dan Rice, Description: The emul version of java.util.Date can add an extra hour to the day before daylight savings time if setMinutes() or setSeconds is called. The problem is that we compare the new javascript hours to the expected hours to see if the hours are equal, but the

[gwt-contrib] DO NOT SUBMIT

2010-03-11 Thread rjrjr
Reviewers: fabbott, Description: DO NOT SUBMIT Please review this at http://gwt-code-reviews.appspot.com/175801 Affected files: A hello.txt Index: hello.txt === --- hello.txt (revision 0) +++ hello.txt (revision 0) @@

[gwt-contrib] Re: Changes for crawling:

2010-03-11 Thread kprobst
http://gwt-code-reviews.appspot.com/161801 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Changes for crawling:

2010-03-11 Thread kprobst
On 2010/03/11 16:45:34, kathrin wrote: Hi Amit, after a lengthy discussion with Joel, we decided to get rid of the CrawlableHyperlink widget. The issue is that it doesn't add enough useful functionality, because the app writer still needs to handle the ! when actually navigating the app to a

[gwt-contrib] Re: Changes for crawling:

2010-03-11 Thread amitmanjhi
LGTM -- I assume you have checked that it still works correctly. The only minor comment I have is extracting out the string constant ! used at two places. http://gwt-code-reviews.appspot.com/161801 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Changes for crawling:

2010-03-11 Thread John Tamplin
On Thu, Mar 11, 2010 at 11:48 AM, kpro...@google.com wrote: after a lengthy discussion with Joel, we decided to get rid of the CrawlableHyperlink widget. The issue is that it doesn't add enough useful functionality, because the app writer still needs to handle the ! when actually navigating

[gwt-contrib] Adding missing package descriptions to javadoc

2010-03-11 Thread jlabanca
Reviewers: cramsdale, doog, Description: Some packages appear in JavaDoc but do not have descriptions. This patch adds descriptions. Please review this at http://gwt-code-reviews.appspot.com/176801 Affected files: dev/core/src/com/google/gwt/core/linker/package.html

[gwt-contrib] RR : Add check for permutation header to RemoteServiceServlet

2010-03-11 Thread bobv
Reviewers: Ray Ryan, Message: Review requested. Description: Re-add the check that was removed in r5731, but allow the behavior to be overridden. Please review this at http://gwt-code-reviews.appspot.com/179801 Affected files: M

[gwt-contrib] Re: RR : Add check for permutation header to RemoteServiceServlet

2010-03-11 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/179801 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adding missing package descriptions to javadoc

2010-03-11 Thread cramsdale
LGTM http://gwt-code-reviews.appspot.com/176801 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >