Re: chrome upgrade scrolling issues

2013-08-26 Thread Andy King
I have Chrome version 29.0.1547.57 m on Windows 7 and the scrolling appears to work correctly, that is, when I go to one of the other places the scrollbar is at the top of the panel. On Monday, August 26, 2013 9:27:10 AM UTC-7, EMan wrote: my computer (mac) just upgraded to the latest version

Changing the Displayed Value in a DataGrid

2013-07-17 Thread Andy King
I am trying to modify the value that is displayed in a DataGrid cell after the user has entered or modified the existing value. For example, if the user enters 5/6/12 I want the cell to display 05/06/2012 when the user exits the cell. Here is the code that creates the column: final

Re: Unable to find '.gwt.xml' on your classpath (again)

2013-04-10 Thread Andy King
Well, I found a solution, although I don't know why the original project doesn't work. The fact that the project ran with no problem on one machine, but had problems on the other machine, seemed to point to a difference in configuration. I renamed the .html file, TimeToPlay.html, to

Unable to find '.gwt.xml' on your classpath (again)

2013-04-08 Thread Andy King
I am at my wits end with this problem ... I've looked at suggested solutions, but none have worked. Here is the (all-too-familiar) error that I see in the GWT Development Mode window: [DEBUG] [fosterapet] - Loading inherited module 'fosterapet' [ERROR] [fosterapet] - Unable to find

Re: Need some help with Totoe and XML

2013-03-27 Thread Andy King
Where is this XML located? Are you receiving on the client machine somehow? I realize that Totoe is a client-side parser and helper, but it would be useful to have some context for why you're doing. Also, what have you tried already? On Wednesday, March 27, 2013 8:01:14 AM UTC-7, skippy

Re: XMLParser Problems

2013-03-20 Thread Andy King
I don't know of any way to use XPath against the GWT XML library, but that's not to say that you can't do so. In my work with it I just walk through the Document object and extract the elements and attributes into my own structure. If you know the structure of your XML ahead of time then

Re: XMLParser Problems

2013-03-17 Thread Andy King
First, it appears that your XML is invalid ... your last child element has a beginning tag of ACCT005 and an ending tag of vlst. Assuming that this isn't your only problem, I think you are just not getting the child nodes of the item element, but instead you are getting the child nodes of the

Re: Eclipse, GWT, which class to use and how to call it via a hyperlink?

2013-01-16 Thread Andy King
Glyn, just my two cents ... please take it with a grain of salt if you don't like it! ... it appears that you have programming experience, and I am impressed that you have got as far as you have ... my recommendation is that you go through a Java book (e.g., Head First Java) and a GWT book

Re: How to integrate Jsoup in GWT

2013-01-04 Thread Andy King
It appears that Jsoup may be intended for use on the server-side of the application, and yet you are using it on the client side. If you want to use it in the client then you'll have to make the source code available to the GWT compiler, and the source is in the

Re: ByteBuffer to String

2013-01-04 Thread Andy King
I don't think ByteBuffer is available in GWT ... can you use the first solution suggested here: http://stackoverflow.com/questions/88838/how-to-convert-strings-to-and-from-utf8-byte-arrays-in-java On Thursday, January 3, 2013 8:17:11 AM UTC-7, Andres Q wrote: Hi! I have the following Java

Re: losing focus on the page when popup comes

2013-01-02 Thread Andy King
Is this for something like a login screen? I've done this by creating a widget ... the UiBinder XML file is as follows (this is in LoginWidget.ui.xml): ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui' g:FlowPanel g:LabelLogin is

Re: The purpose of GWt

2012-11-21 Thread Andy King
You can try this: http://lmgtfy.com/?q=gwt+animation+examples But seriously, there are so many examples available! Even the GWT showcase has an example (http://gwt.google.com/samples/Showcase/Showcase.html#!CwAnimation). On Wednesday, November 21, 2012 1:13:21 PM UTC-7, Goran Bojanic wrote:

Another Request Factory Example (using MySQL)

2012-11-21 Thread Andy King
I have started to create another example/tutorial, this time using MySQL for the data (the first example just held the data in memory). The example has some way to go before it is complete, but it may help others even in its current state. The first part of the tutorial includes instructions