detecting images that fail to load using image.addLoadHandler

2009-07-15 Thread davidroe
how can I determine that an image failed to load, due to perhaps a network error? I used to use image.addLoadListener(new LoadListener() { public void onLoad(Widget sender) { ... } public void onError(Widget sender) { ... } } and anything that arrived through onError() was

Re: GWT 1.7.0

2009-07-15 Thread Paulo Coutinho
I have compiled my app with new version, but the button size has the same problem, on IE is bigger than other browsers. 2009/7/15 sideview1 sidevi...@gmail.com: nevermind, I was looking at the main page http://code.google.com/p/google-web-toolkit/ but I found the correct location and

Re: Can GWT do pixel-manipulation?

2009-07-15 Thread Jan Ehrhardt
There is a JavScript library from Google (http://excanvas.sourceforge.net/) for emulating canvas in IE. You could use it to make the canvas object available in IE. This emulation is much slower, than native canvas in other browsers, but for drawing each letter once, it should work. Another way

Re: GWT 1.7.0

2009-07-15 Thread brett.wooldridge
Read the release notes. Very few issues were fixed in 1.7.0, just a few extremely critical issues. On Jul 15, 3:34 pm, Paulo Coutinho pa...@prsolucoes.com wrote: I have compiled my app with new version, but the button size has the same problem, on IE is bigger than other browsers. 2009/7/15

Yet another proxy on GWT thread

2009-07-15 Thread Marcelo Sena
Hi, I'v seen this kind of discussion over many threads but I still wasn't able to learn form them how to setup a servlet to proxy rpc requests from GWT applications to my other server(a google app engine running python code). I followed this guide but all I can't get the calls to be sent to my

WebKit in license

2009-07-15 Thread henryhbk
I have a question about the license of GWT. In the description it includes webkit. Now my assumption is that this is based on the pseudo web environment in eclipse that you use for development, prior to deployment. Can someone clarify this? Legal wanted to know, as this carries a different

Re: Eclipse Plugin and documentation of older versions of GWT

2009-07-15 Thread Mauro De Lucca
I am on the same situation too. I am working on a GWT 1.6 project and I need to reinstall GWT plugin for Eclipse. What can I do? BTW: Why 1.7 release has been so quite? On Jul 14, 10:05 am, Bruno bruno.harbu...@manchester.ac.uk wrote: Hello, Is there a way to install the GWT SDK 1.6 with the

Re: webAppCreator

2009-07-15 Thread akvarelli
Thank's a lot. --~--~-~--~~~---~--~~ 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

gwt linux 1.5.3 oophm?

2009-07-15 Thread kwas
has anyone been able to get the oophm version of gwt 1.5.3 for linux working? if so, can you provide some details on where to get it and how you did it? i found a gwt-linux-1.5.3-oophm package and tried installing it, found the FF3 plugin within and installed that in FF3, but when I try yo run

New Member Question

2009-07-15 Thread william murphy
Where can I find a Java Developer with Good GWT experience in the Sarasota area. I apologize if you feel this is spam, but I have a client that had this need for awhile, and I have run out of places to find viable candidates. Any help would be appreciated. Thanks in advance Bill Murphy 4T

Re: javascript in war folder not included after building war file

2009-07-15 Thread Marko Vuksanovic
Aren't these relative paths? On Jul 4, 7:01 pm, waf wlod...@gmail.com wrote: Hi, Try to use relative paths to your resources. -- waf On 4 Lip, 17:35, Marko Vuksanovic markovuksano...@gmail.com wrote: I have copied ext-js library into war folder of my gwt project. Then I have

need a GWT developer

2009-07-15 Thread Dave
I am new to this board, so hopefully this is allowed. I have an open contract consulting position onsite in greater Tampa/ Sarasota/Bradenton area for a GWT Developer. It is a long-term position and would love to find someone from this discussion group who really wants to work with GWT (not as

Re: detecting images that fail to load using image.addLoadHandler

2009-07-15 Thread brett.wooldridge
Almost exactly the same way. If you are only interested in failure: public void foo() { image.addErrorHandler(new ErrorHander() { public void onError(ErrorEvent event) { ... } }); } Or if you are interested in both success and failure, your class can implement both

Re: How to create my own Event for Composite Widgets ?

2009-07-15 Thread Dackiller
Thank you Kwhit and Dalla... Very much --~--~-~--~~~---~--~~ 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

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-07-15 Thread Thomas Broyer
On 13 juil, 11:18, Kwhit kwhitting...@gmail.com wrote: I'm following your work with interest Eduardo, I'm in the process of building a 'dream-team reference application' myself including RPC, EasyMock, GIN, Guice, ... so I can unit test and hack end-to-end without deploying on a server.

Re: sort incubator PagingScrollTable

2009-07-15 Thread Dalla
I haven´t used PagingScrollTable myself, but I used ScrollTable which is also avalible in incubator. Have a look at that one --Dalla http://date-time.appspot.com/ On 14 Juli, 15:22, DAVID PACHECO dpachec...@gmail.com wrote: I need sort PagingScrollTable , who can help me? The version

Re: Local Data Error

2009-07-15 Thread Dalla
I really think we would need to see some code to figure out what´s going on here --Dalla http://date-time.appspot.com/ On 14 Juli, 14:36, mugathur mugat...@gmail.com wrote: I'm experiencing a strange set of behaviors and was wondering if anyone had any ideas.  I'm using the datastore to write

Re: java.lang.UnsatisfiedLinkError

2009-07-15 Thread Dalla
I´m not familiar with the S3 API, but every time I´ve seen UnsatisfiedLinkError the problem has been A) A client side only function was called from the server side B) A server side only function was called from the client side So make sure there are no S3-functions that can not actually be used

Multiple GWT modules and dependencies

2009-07-15 Thread Jan Ehrhardt
Hi, I'd like to create a page, which requires different GWT applications, but which is dependent to the logged in user. So it doesn't make any sence to load one GWT module, which containes hundreds of GWT applications, even when only two are required. I know, that I can compile each application

Re: Multiple GWT modules and dependencies

2009-07-15 Thread Paul Robinson
If you can use GWT trunk or wait for GWT 2.0, then what you're describing sounds very much like code splitting and the associated story of your compile: http://code.google.com/p/google-web-toolkit/wiki/CodeSplitting Paul Jan Ehrhardt wrote: Hi, I'd like to create a page, which requires

Re: gwt linux 1.5.3 oophm?

2009-07-15 Thread Célio
AFAIK, oophm works only with gwt 2.0 (trunk). I have tried it myself with 1.6.4 without any success. Why don't you give the trunk a try? It's as simple as replacing the jars (at least for 1.6.4, don't know for 1.5). On Jul 14, 10:28 pm, kwas ken.kwasni...@gmail.com wrote: has anyone been

Using MVP + Google Maps for GWT API

2009-07-15 Thread Dalla
Hi all! Looking at the Google I/O 2009 best practices, we learn that MVP is the way to go to be able to get a good separation between view and logic, and also to be able to run JUnit tests without extending GWTTestcase. Most interface examples we see in examples are pretty straight forward,

Using MVP + Google Maps for GWT API

2009-07-15 Thread Dalla
Hi all! Looking at the Google I/O 2009 best practices, we learn that MVP is the way to go to be able to get a good separation between view and logic, and also to be able to run JUnit tests without extending GWTTestcase. Most interface examples we see in examples are pretty straight forward,

Re: Eclipse Plugin and documentation of older versions of GWT

2009-07-15 Thread Miguel Méndez
Currently, the plugin's update site only contains the latest SDKs. You can always download older versions of the SDKs and let the plugin know where they are. See http://code.google.com/eclipse/docs/using_sdks.html for more details. You could add a feature request to either the GWT or App Engine

Re: gwt linux 1.5.3 oophm?

2009-07-15 Thread Jeff Chimene
You don't mention testing in web mode. Is that not an option? You might also point out to those in charge that GWT includes support for modern browsers w/ the 1.6.7 release. Such support might be important to them. OOPHM is nice to have, but if you're going to nail your feet to the floor by

Re: Internal size of a rich text editor

2009-07-15 Thread David Given
David Given wrote: [...] I'm trying to find a way of determining the size of the *contents* of a rich text editor. (In particularly, the height.) I need to be able to size a widget to display the contents without a scrollbar. Anyone know about this? -- ┌─── dg@cowlark.com ─

Re: Client did not send 202 bytes as expected

2009-07-15 Thread Jeff Chimene
Hi, I remember this thread. It's a very mysterious problem. The OP did implement a solution: In order to deal with this situation, we implemented a high level (GWT) configurable retry mechanism, with timeout support. This resolves the symptoms, and in effect solves the problem. I doesn't look

Difference between TextBox.addChangeHandler() and TextBox.addValueChangeHandler()?

2009-07-15 Thread Chris
Hi The subject says it all really: Is there a difference between TextBox.addChangeHandler() and TextBox.addValueChangeHandler(), and if so, what is it? The API isn't very clear about this. Thanks in advance Chris --~--~-~--~~~---~--~~ You received this message

GWT RPC + Spring (saga)

2009-07-15 Thread cristi
I saw a lot of article about integrating GWT RPC and Spring What do you thing (for begginers) this apporach is not ok ? In the web xml the application context is loaded via context-param param-namecontextConfigLocation/param-name

Re: Difference between TextBox.addChangeHandler() and TextBox.addValueChangeHandler()?

2009-07-15 Thread Thomas Matthijs
The subject says it all really: Is there a difference between TextBox.addChangeHandler() and TextBox.addValueChangeHandler(), and if so, what is it? The API isn't very clear about this. Look it has source code!

Re: DockLayoutPanel from Google I/O

2009-07-15 Thread Kango_V
Any idea when this will be merged into trunk? On Jun 26, 9:52 pm, kugutsumen kugutsu...@gmail.com wrote: I just watched the Google IO talk as well and I can't wait to try the newDockLayoutPanel. Excellent talk btw! Any idea when you will merge it with trunk? On Jun 4, 9:28 pm, Joel Webber

Re: WebKit in license

2009-07-15 Thread Jason Essington
yes, it is only for development (HostedMode) and only on OS X. -jason On Jul 14, 2009, at 3:07 PM, henryhbk wrote: I have a question about the license of GWT. In the description it includes webkit. Now my assumption is that this is based on the pseudo web environment in eclipse that you use

Copying from Result Set to Array List

2009-07-15 Thread Rahul
Hi, I apologize because this topic is again n again asked on the forum, but after reading the topics I was not able to get an answer to my problem. I am connecting to a server and trying to display an sql query on the browser. Here is my server side code: public class GreetingServiceImpl

Re: Copying from Result Set to Array List

2009-07-15 Thread Chad
Rahul, Based on your query (select SourceTableName from SourceTables), I would guess that your result set would contain a single column with string data (char or varchar in SQL). If that's correct, then your loop should look more like this: while (rs.next()) { rowArray.add(rs.getString(1)); }

Re: Copying from Result Set to Array List

2009-07-15 Thread Sean
while(rs.next()) is fine and pretty standard way to go through. I'm confused by how you are adding the data to the ArrayList though. You get your resultSet which judging by your query should be TableNames, which I assume are Strings?. But you're getting it out as an INT then converting to a

Re: Copying from Result Set to Array List

2009-07-15 Thread Rahul
Hi, Thanks for replying I am getting the following error [ERROR] Uncaught exception escaped java.lang.ClassCastException: java.util.ArrayList cannot be cast to java.lang.String at com.example.test7.client.Test7$1MyHandler$1.onSuccess(Test7.java: 1) at

Re: Copying from Result Set to Array List

2009-07-15 Thread Rahul
Hi Sean, Thanks for replying. I understood what you are trying to say. @Chad can you elborate on Your code would only work if the SourceTableName column in the SourceTables table is of an integer type. My column name is presently an varchar type On Jul 15, 11:49 am, Rahul

Re: Difference between TextBox.addChangeHandler() and TextBox.addValueChangeHandler()?

2009-07-15 Thread Thomas Broyer
On 15 juil, 16:28, Chris uk.org.micros...@googlemail.com wrote: Hi The subject says it all really: Is there a difference between TextBox.addChangeHandler() and TextBox.addValueChangeHandler(), and if so, what is it? The API isn't very clear about this. ValueChangeEvent vs. ChangeEvent:

Re: javascript in war folder not included after building war file

2009-07-15 Thread Dalla
As I recall it, putting thing directly in the war folder is not a good idea, since those will be removed when you compile your GWT-project. Instead, create a directory named public in your root package, any files put in the public directory or sub directories there of, will be copied to your war

Re: GWT RPC + Spring (saga)

2009-07-15 Thread David Durham
On Wed, Jul 15, 2009 at 9:30 AM, cristicristian.chiov...@gmail.com wrote: I saw a lot of article about integrating GWT RPC and Spring There's a a GWT Server Library projects that provides an easy way to wire up a Spring Controller as a GWT Remote Servlet. http://gwt-widget.sourceforge.net/

Re: GWT RPC + Spring (saga)

2009-07-15 Thread cristi
Thx ... i know that one and that is the bes i think ... But i want to know if how i did is acce[ata;be and what are the downsides On 15 Iul, 19:29, David Durham david.durham...@gmail.com wrote: On Wed, Jul 15, 2009 at 9:30 AM, cristicristian.chiov...@gmail.com wrote: I saw a lot of

Does GWT 1.7 support Class.getSimpleName()?

2009-07-15 Thread Pandaman
Does GWT 1.7 support Class.getSimpleName()? --~--~-~--~~~---~--~~ 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

Re: gwt-maps-1.0.4.jar and gwt-user-1.5.3

2009-07-15 Thread mel
I have a similar problem that only started when I started using GWT 1.6. In my code I create a fieldset HTML elememt and add it to a flex table thus. code public static HTML createFieldSet(String as_legend, String div_element_id) { return new HTML(fieldset + legend +

GWT 1.7

2009-07-15 Thread Scooter
Just upgraded to GWT 1.7 and ran into the following when trying to build with gwt-log. I already posted on the gwt-log discussion but wanted to put in the main GWT list for others using gwt-log. Thanks Scooter Compiling module edu.scripps.hddesktop.Main [ERROR] Errors in

Re: GWT 1.7

2009-07-15 Thread Fred Sauer
GWT 1.7.0 adds a new user agent value for ie8 which causes this. Please try that latest gwt-log-2.6.2.jar from http://code.google.com/p/gwt-log/downloads/list Thanks Fred On Wed, Jul 15, 2009 at 10:47 AM, Scooter willi...@gmail.com wrote: Just upgraded to GWT 1.7 and ran into the following

Re: GWT RPC + Spring (saga)

2009-07-15 Thread gpike
Hi, You can use the Spring listener in the web.xml: listener listener-class org.springframework.web.context.ContextLoaderListener /listener-class /listener Then in any of your Servlets you can use the context:

Re: GWT RPC + Spring (saga)

2009-07-15 Thread Cristian Chiovari
Thx exaclty that is how i saw things...i wondered since it is so simple if is indeed good or maybe it has some downsides...But it seems to be ok :) On Wed, Jul 15, 2009 at 8:58 PM, gpike gop...@gmail.com wrote: Hi, You can use the Spring listener in the web.xml: listener

Set link on Image not working in IE!

2009-07-15 Thread Dariusz
Hi Guys, I'm having a problem setting a link on an image. It's working in FF but not in IE. I just wanted to make sure if this issue is solved or do I need to have a workaround? I want to do something like this, but in GWT of course: a href=? locale=enimg src=en.gif//a In java it looks like

HTML 5 video

2009-07-15 Thread Joseph Arceneaux
Greetings, anyone know of any tutorials, code, or other information for using the video tag with GWT? Even a simple explanation of the video API would be helpful. Thanks, Joe --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: cross domain http response

2009-07-15 Thread Hetman
I think that simply solution is to make your servlet parse normal POST request and use FileUpload inside FormPanel. Also then in future you can use swfupload to show progress of upload (but then remember to load swf file from server where you want send data) but this only is so simple if you

Errors with SimpleViz.gwt.xml

2009-07-15 Thread akvarelli
Hi, I'm trying to follow the instructions here: http://code.google.com/docreader/#p=gwt-google-apiss=gwt-google-apist=VisualizationGettingStarted When I add the line inherits name='com.google.gwt.visualization.Visualization'/ to my SimpleViz.gwt.xml file and then try to run the project in

UnsatisfiedLinkError

2009-07-15 Thread lumo
Hi NG! i wrote a class where i create a new marker and want to return the marker with a function so the marker is coming in STRING and i want to convert it to a real Marker(class) so i got a function toMarker() in my class note: i do _not_ get any compiler messages, says succeeded but at

Errors with SimpleViz.gwt.xml

2009-07-15 Thread akvarelli
Hi, I already solved the problem myself, so no need to answer this subject I posted a moment ago! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

New features of GWT 1.7 compared to 1.6 version

2009-07-15 Thread vijay
HI, Can any one please let us know the new features in 1.7 version --~--~-~--~~~---~--~~ 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

Getting StandardContext[]Exception while trying to establish httpURLConnection

2009-07-15 Thread guys2009
Hi, I just wrote a DownloadServiceImpl class that connects to a remote site : URL url = new URL(targetURL); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod(GET);

GWT Map - Error Closing InfoWindow [Hosted Mode]

2009-07-15 Thread alixeb
Hiya, I am a Front End Developer. I am trying to learn GWT. I think my code is pretty straightforward. I am creating a DockPanel and in the center of it I have adding a MapPage object that extends Vertical Panel. Each time you click on the Map a marker appear which some text in InfoWindow.

GWT 1.7 Maven

2009-07-15 Thread buzo
Not sure if this is the right place to ask this, but... Can someone publish the gwt 1.7 jars to the central Maven repository? I see under http://mirrors.ibiblio.org/pub/mirrors/maven2/com/google/gwt/ that the latest version is 1.6.4 Thanks.

GWT 1.7 available

2009-07-15 Thread Leszek Gruchała
Hi, I'm glad to see new GWT version, but why it isn't automagically moved to Maven public repo? Could anyone responsible do it for many impatient people? :) Thanks, Leszek --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

clear.cache.gif missing from all IEs

2009-07-15 Thread Charlie M
Hi All, I have just upfraded my project to GWT 1.7. Magically my IE8 issue has gone away :). However now I have a new one. All image buddle images on all the IEs don't display correctly. They have the error image icon instead. They still have the correctly sliced up image in the background.

The import com.google.gwt.visualization.client.AjaxLoader cannot be resolved

2009-07-15 Thread braverju
Dear everybody, Some time ago I did a small gwt project that use gwt-visualization. 1.0.0 . Now, I decided to renew the project on a new machine. I downloaded a new library gwt-visualization.1.0.2 and get an error: The import com.google.gwt.visualization.client.AjaxLoader cannot be resolved .

Re: PHP programmer - is GWT for me?

2009-07-15 Thread ET
I recommand using GWT... hands down. Not having to write javascript directly is a thing of beauty. Why worry about all of the cross- browser inconsistencies when GWT has taken care of that for you? ;-) On Jul 14, 11:39 am, Dalla dalla_man...@hotmail.com wrote: Well, I can give you my thoughts

missing 1.7.0 gwt-module.dtd

2009-07-15 Thread goose
The dtd for the 1.7.0 gwt-module (http://google-web- toolkit.googlecode.com/svn/tags/1.7.0/distro-source/core/src/gwt- module.dtd) is not available. I hope google will post this soon. In the meantime I am still using the 1.6.4 dtd with gwt 1.7.

customize new web application wizard

2009-07-15 Thread goose
Is it possible to customize the gwt new Web Application Project wizard in eclipse 3.4? Things to customize might be the content of the host web page html or the default build path and libraries. --~--~-~--~~~---~--~~ You received this message because you are

GWT URL Parameters

2009-07-15 Thread KevMo
I know I can get URL parameters by using Window.Location.getParameter (), but how does one programatically set the url parameter? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

More than one html in the same project

2009-07-15 Thread André Bertuzzi
Hello, Im trying to develop one project that has two interfaces (html), the main calls the second that is a fullscreen webpage. But the second must be part of the main project to make the requests to other classes inside the project and work dynamically. Thank you...

Re: Position of cursor

2009-07-15 Thread Frank
With a simple javascript I can have the mouseposition anytime: !-- document.onmousemove = mouseMove; function mouseMove(ev){ ev = ev || window.event; var mousePos = mouseCoords(ev); //document.Show.MouseX.value = mousePos.x;

Re: GWT Map - Error Closing InfoWindow [Hosted Mode]

2009-07-15 Thread Eric Ayers
I'm guessing that what's happening here is that the MapClickHandler is getting in the way of closing the info window. Its not intuitive, but the map click handler fires even when you are clicking on an overlay on top of the map, like an InfoWindow:

Re: Errors with SimpleViz.gwt.xml

2009-07-15 Thread Eric Ayers
Check your classpath and make sure that gwt-visualization.jar is on it. On Wed, Jul 15, 2009 at 4:18 AM, akvarelliakvare...@gmail.com wrote: Hi, I'm trying to follow the instructions here: http://code.google.com/docreader/#p=gwt-google-apiss=gwt-google-apist=VisualizationGettingStarted

Re: cross domain http response

2009-07-15 Thread Max
I afraid this is not going to work. I have Application written with GWT 1.7 (just updated). I have one page where I upload file to the remote server that is on different domain. So, when I do Post to the server file gets uploaded to the server but when it's time to get response I'm getting NULL.

Changing the return type

2009-07-15 Thread Rahul
Hi, I am beginner to gwt. I am using RPC for my application. The default return type is the server class is string, I would like to return an integer or an array. Whenever I am changing the return type in my server class (GreetingServiceImpl) and my client class (GreetingServiceImpl) I get an

Re: Using MVP + Google Maps for GWT API

2009-07-15 Thread David Peterson
My realistic approach has been to just pass out the original widget. An alternate approach would be to create your own interface with the methods you need from the widget in question, and then create a simple sub-class of the widget which implements your interface. Eg: public interface Mapable

Re: PHP programmer - is GWT for me?

2009-07-15 Thread Christian Goudreau
I'm using PHP and GWT for my projects, i've done a lot of work around and here's my though : Not enough documentation around the PHP and GWT projet. I had no enough time to go around the libraries and learn everything from the code and the exemples. I really hope this project will eventually

Re: gwt linux 1.5.3 oophm?

2009-07-15 Thread Ken Kwasnicki
hey thanks for the response. i'm certainly willing to try 2.0. running into a bit of a snag though. is this the correct checkout location? svn checkout http://google-web-toolkit.googlecode.com/svn/trunk/ trunk i also checkout out 'tools' and created the GWT_TOOLS env variable. i'm using

Re: Using MVP + Google Maps for GWT API

2009-07-15 Thread Norman Maurer
Very interesting.. could you add some Get started documentation ? I just want to get a better idea how to use it ;) Bye, Norman 2009/7/15 David Peterson da...@randombits.org: My realistic approach has been to just pass out the original widget. An alternate approach would be to create your

Re: gwt linux 1.5.3 oophm?

2009-07-15 Thread Ken Kwasnicki
lol, thanks for the response.  i think i will try to pry my feet loose and try getting this project to work with more recent gwt.  still having trouble figuring out how to compile/enable oophm re: my previous post. thanks, ken Jeff Chimene wrote: You don't mention testing in web mode.

Re: Changing the return type

2009-07-15 Thread Rahul
Hi, I am able to do that now. Sorry for the post. On Jul 15, 3:18 pm, Rahul coolrahul18...@gmail.com wrote: Hi, I am beginner to gwt. I am using RPC for my application. The default return type is the server class is string, I would like to return an integer or an array. Whenever I am

Re: PHP programmer - is GWT for me?

2009-07-15 Thread Daniel Jue
I'm going to have to say no on this. If you're a PHP programmer with little to no Java experience since version 1.4, I would say you are going to burn yourself. GWT programming requires some fundamental knowledge of Java. You can take a look at those of us trying to digest the Google IO Best

Re: Using MVP + Google Maps for GWT API

2009-07-15 Thread David Peterson
Yeah, I will soon hopefully - need to sleep right now unfortunately. Also, check out the related library which implements the command pattern API: http://code.google.com/p/gwt-dispatch It actually has a 'Getting Started' page already, which might tide you over until I can get some docs up for

Re: Using MVP + Google Maps for GWT API

2009-07-15 Thread Norman Maurer
Hi Peterson, I already use your gwt-dispatch successfully;) Thx for the pointer anyway.. Bye, Norman 2009/7/15 David Peterson da...@randombits.org: Yeah, I will soon hopefully - need to sleep right now unfortunately. Also, check out the related library which implements the command pattern

Re: PHP programmer - is GWT for me?

2009-07-15 Thread Ian Bambury
I'm going to have to say yes :-) I didn't know Java before I started on GWT. If you have experience of other curly-bracket languages, Java is not a problem. Programming is about knowing how to solve problems, not about knowing whether to use 'print', 'echo', 'write', 'sysout', or ''. Ian

How to control or catch the action when the user click the reload button browser in web mode

2009-07-15 Thread ayo...@gmail.com
Hi, Anybody know how can I control or catch the action when a user makes click in the reload button browser in web mode. Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: Using MVP + Google Maps for GWT API

2009-07-15 Thread Dalla
Thanks David, I´ll be sure to check out both your libs. I actually haven´t had a look at the command pattern at all yet, but I´m planning to take a look at that part aswell ! On 15 Juli, 22:05, Norman Maurer nor...@apache.org wrote: Hi Peterson, I already use your gwt-dispatch successfully;)

Re: Using MVP + Google Maps for GWT API

2009-07-15 Thread David Peterson
I already use your gwt-dispatch successfully;) Thx for the pointer anyway.. Heh - of course you do, sorry about that. FYI, I've now added a short 'Getting Started' doc: http://code.google.com/p/gwt-presenter/wiki/GettingStarted Enjoy :) David

Re: Position of cursor

2009-07-15 Thread Carver
There is an issue posted for adding a keyboard listener to the document here: http://code.google.com/p/google-web-toolkit/issues/detail?id=1442 Based on the GWT team response to that issue, I would assume that there is not going to mouse listener support for the entire document anytime soon.

Adding Existing WIdget to new Element disables Event Handlers

2009-07-15 Thread melody
I am trying to create a new Widget from a combination of the Fieldset HTML element. I want to add a widget like a Button/or or a FlexTable to the fieldset. Is there a way of adding the widget without losing the event handlers on the widget. See code below. FlexTable table = new FlexTable();

Re: customize new web application wizard

2009-07-15 Thread Keith Platfoot
Not at this time. We have discussed adding more options to the New Web Application Project wizard in the future, but for now your best bet is to generate the project with the wizard and then tweak the artifacts as needed. Keith On Wed, Jul 15, 2009 at 12:30 PM, goose wra...@gmail.com wrote:

Re: Adding Existing WIdget to new Element disables Event Handlers

2009-07-15 Thread Thomas Broyer
On 15 juil, 22:50, melody mpedzi...@stuart.iit.edu wrote: I am trying to create a new Widget from a combination of the Fieldset HTML element. I want to add a widget like a Button/or or a FlexTable to the fieldset. Is there a way of adding the widget without losing the event handlers on the

Re: New features of GWT 1.7 compared to 1.6 version

2009-07-15 Thread Thomas Broyer
On 15 juil, 12:58, vijay bhaskar.rep...@gmail.com wrote: HI, Can any one please let us know the new features in 1.7 version Read the release notes: http://code.google.com/webtoolkit/releases/release-notes-1.7.0.html This release adds explicit support for Internet Explorer 8, Firefox 3.5,

Fade animation with IE opacity doesn't work....

2009-07-15 Thread Ed
He, The following occurred against 1.6.4. In hosted mode (IE 7 I quess as I have IE7 installed) I found out that when I set the opacity in a FadeInAnimation.update(double) class that is a subclass of Animation, it has no effect until I first set some other style property... Example: In the

Re: Copying from Result Set to Array List

2009-07-15 Thread Chad
Well, just that. The code you originally posted showed you trying to retrieve integer data from your result set, but your table contains string type data so your code wouldn't have worked. Now, the error you posted looks like you are trying to cast your result to a String in your onSuccess

Re: gwt linux 1.5.3 oophm?

2009-07-15 Thread Jeff Chimene
On 07/15/2009 12:30 PM, Ken Kwasnicki wrote: hey thanks for the response. i'm certainly willing to try 2.0. running into a bit of a snag though. is this the correct checkout location? svn checkout http://google-web-toolkit.googlecode.com/svn/trunk/ trunk i also checkout out 'tools' and

Re: gwt linux 1.5.3 oophm?

2009-07-15 Thread Jeff Chimene
On 07/15/2009 04:28 PM, Jeff Chimene wrote: On 07/15/2009 12:30 PM, Ken Kwasnicki wrote: hey thanks for the response. i'm certainly willing to try 2.0. running into a bit of a snag though. is this the correct checkout location? svn checkout

GWT 1.7.0 - gwt-dnd 2.6.5 (Drag-and-drop) / gwt-log 2.6.2 (Logging) / gwt-voices 1.6.0 (Sound)

2009-07-15 Thread Fred Sauer
Hi With GWT 1.7.0 out the door I thought it would be a good time to provide an update for gwt-dnd, gwt-log and gwt-voices. GWT 1.7 adds a new user agent deferred binding property value 'ie8' which is a breaking change for any project using user agent based deferred binding. To accommodate the new

Re: Command Pattern, MVP, EventBus

2009-07-15 Thread Alejandro D. Garin
Hi David, On Wed, Jul 15, 2009 at 4:36 PM, David Peterson da...@randombits.orgwrote: Thinking further, I think it's better to separate the EventBus from the Command system somewhat. The reason being that generally, events are used to update on changes that have already happened, or are about

Re: GWT URL Parameters

2009-07-15 Thread Max
Hi KevMo, I think you can find this information in this post: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/bcc33cc90e1064d5/3f9ff71f532b4cd1?#3f9ff71f532b4cd1 Also you can search for URL Parameters or Parameters in this group so find more posts. Regards, Max On Jul

How to configure multiple Generators

2009-07-15 Thread Gary S
I'm adding Gin, which generates the injector implementation with GWT.create. Now, I get errors new in other places that use GWT.create. They aren't using the correct Generator class anymore. One of these uses ImmutableImageBundle, I see this should be replaced with ClientBundle, but it worked

Re: detecting images that fail to load using image.addLoadHandler

2009-07-15 Thread davidRoe
thanks, Brett. right after posting, I had stumbled upon addErrorHandler() while browsing the GWT source and tried exactly this, without any joy. however, with you re-iterating that this was the solution, I tried again, forced a unique URL to avoid the image being loaded from cache, and success.

Re: HTML 5 video

2009-07-15 Thread Ivan Ooi
http://www.infoq.com/news/2009/07/HTML-5-Video-Codec Parties Fail to Agree on the HTML 5 Video Codechttp://www.infoq.com/news/2009/07/HTML-5-Video-Codec CommunityArchitecture http://www.infoq.com/architectureTopics Specifications http://www.infoq.com/Specifications Ian Hickson, the editor of the

Re: Fade animation with IE opacity doesn't work....

2009-07-15 Thread Adam T
Hi Ed, IE is always going to throw you some interesting challenges. The one you've hit here relates to IE only applying filters if an element has position. You've achieved that by directly setting the element's height; another, perhaps more common way is to set the zoom style property to 1,

Re: Does GWT 1.7 support Class.getSimpleName()?

2009-07-15 Thread Adam T
GWT supports the following: http://code.google.com/webtoolkit/doc/1.6/RefJreEmulation.html //Adam On 15 Juli, 19:00, Pandaman p4nda...@gmail.com wrote: Does GWT 1.7 support Class.getSimpleName()? --~--~-~--~~~---~--~~ You received this message because you are

  1   2   >