JDO Error?

2009-12-22 Thread Joseph Arceneaux
I have programmatically created two data objects, which I have validated through the admin tool, and then attempt to delete them using this code: try { pm.currentTransaction ().begin (); ListStreamingMetaData list = (ListStreamingMetaData) pm.newQuery (query).execute (); if (!list.isEmpty ()) {

Re: Announcing GWT 2.0 Milestone 1

2009-10-07 Thread Joseph Arceneaux
May we presume that the Snow Leopard issue is now history? Thanks, Joe On Mon, Oct 5, 2009 at 4:43 PM, Amit Manjhi amitman...@google.com wrote: Hi everyone, We are excited to release the first milestone build for GWT 2.0 today. This milestone provides early access (read: known to still be

Re: Announcing GWT 2.0 Milestone 1

2009-10-07 Thread Joseph Arceneaux
There does not appear to be a nice URL I can point Eclipse 3.5 at in order to install GWT 2.0 in the usual fashion. Nor, apparently, any instructions about an alternate procedure. It appears unclear on just where / how to merge the contents of the zip file into an existing Eclipse integration;

Re: Making a fancy GWT Chart

2009-08-30 Thread Joseph Arceneaux
So what is the technology behind Google finance? This seems to me to be Ajax-powered, client-side created charts and graphs... On Sun, Aug 30, 2009 at 8:56 AM, Sri sripathikrish...@gmail.com wrote: There are multiple ways to achieve this - If you want to continue generating images in java,

Problem with

2009-08-25 Thread Joseph Arceneaux
I am trying to create an XML document in GWT. I import import com.google.gwt.xml.client.Document, but the moment I make a declaration like Document mDocument; the runtime generates the following errors: [ERROR] Errors in

Re: Problem with

2009-08-25 Thread Joseph Arceneaux
The magic sauce turned out to be adding: inherits name=com.google.gwt.xml.XML / to gwt.xml On Tue, Aug 25, 2009 at 11:25 AM, Joseph Arceneaux joe.arcene...@gmail.comwrote: I am trying to create an XML document in GWT. I import import com.google.gwt.xml.client.Document, but the moment I make

Can't set vertical size of TabPanel

2009-08-05 Thread Joseph Arceneaux
Creating a generic TabPanel with corresponding CSS as follows: .tabPanel { width: 1100px; height: 700px; } results in correctly setting the width, but not the height. Tweaking the values in Firebug yields similar results, I can change the height just fine, but not the width. I've also noticed

Re: HTML 5 video

2009-07-24 Thread Joseph Arceneaux
get it up and running in a full-blown application until stable releases including HTML 5 support are available. video tag usage: http://www.w3schools.com/tags/html5_video.asp Hope that helps, -Sumit Chandel On Thu, Jul 23, 2009 at 10:12 AM, Joseph Arceneaux joe.arcene...@gmail.com wrote

Re: HTML 5 video

2009-07-23 Thread Joseph Arceneaux
in distributing video and audio content on the web. - By * Abel Avram http://www.infoq.com/author/Abel-Avram * on Jul 15 - Discuss http://www.infoq.com/news/2009/07/HTML-5-Video-Codec On Thu, Jul 16, 2009 at 2:10 AM, Joseph Arceneaux joe.arcene...@gmail.comwrote: Greetings

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

Decorator Panel Example Images?

2009-07-06 Thread Joseph Arceneaux
Hi all, a quick perusal of the group shows no answer to this, so I'll try again. The GWT decorator panel example at: http://gwt.google.com/samples/Showcase/Showcase.html#CwDecoratorPanel uses some images. Has anyone figured out where to obtain these from? Thanks, Joe

Re: GWT Eclipse Hosted Mode Problem

2009-07-02 Thread Joseph Arceneaux
, Jul 1, 2009 at 12:30 PM, Joseph Arceneaux joe.arcene...@gmail.com wrote: The way I understand the GWT source arrangement paradigm, I have arranged my code like so: com.foo.project.Data.java - shared client/server code com.foo.project.client.Project.java - client code

GWT Eclipse Hosted Mode Problem

2009-07-01 Thread Joseph Arceneaux
The way I understand the GWT source arrangement paradigm, I have arranged my code like so: com.foo.project.Data.java - shared client/server code com.foo.project.client.Project.java - client code. com.foo.project.server.ServerSide.java - server code. When editing, Project.java can refer to

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-30 Thread Joseph Arceneaux
or the functionality... Joe On Mon, Jun 29, 2009 at 12:29 PM, Ian Bambury ianbamb...@gmail.com wrote: Set the cell height to 100% Ian http://examples.roughian.com 2009/6/29 Joseph Arceneaux joe.arcene...@gmail.com This placement within a panel is very confusing. I am trying to stack

Re: Why does HorizontalPanel cells defaults to vertical-align: top?

2009-06-29 Thread Joseph Arceneaux
This placement within a panel is very confusing. I am trying to stack some labels contiguously in a vertical panel, starting at the top. But the panel places the first label at the very top, and then the second label in the very middle. I've tried changing the CSS style, and also various

JSNI to GWT Type Conversions

2009-06-25 Thread Joseph Arceneaux
Hello, I'm trying to manage the YouTube player from GWT and experiencing some problems. My player class contains JSNI references like: public native final void seekTo (int seconds) /*-{ this.seekTo(seconds, true); }-*/; which work fine, so I know I'm actually