GWTTestCase meddling/not meddling

2011-07-27 Thread Tim K
This tip comes from "Communicate with a Server" "Although GWT translates Java into JavaScript for client-side code, GWT does not meddle with your ability to run Java bytecode on your server whatsoever. Server-side code doesn't need to be translatable, so you're free to use any Java library you fi

Chrome / GWT Size limits

2010-10-15 Thread Tim K
I seemed to have crossed a size threshhold for Chrome. My code runs fine in development mode. I can compile the code without any errors reported. Firefox runs the compiled code, but Chrome reports this error. "Uncaught RangeError: Maximum call stack size exceeded." The individual components of

HTMLPanel tag

2010-03-22 Thread Tim K
I was surprised by the behavior by a UiBinder implementation from GWT.create(). It may be that this is not a "bug report", but rather a "feature request". I am trying to use the tag parameter of HTMLPanel. It seems to work for many tags, but not TD. This test will demonstrate. I set a breakpoint o

[ERROR] [testgwt20layout] Deferred binding failed for 'com.google.gwt.dom.client.DOMImpl'

2010-03-19 Thread Tim K
Clean" made the error return. GWT-Compile fixed the error. A second "Project Clean" did not cause an error. So this is not 100% reproducible. I hope this helps anyone with a similar error. Tim K. OS - Windows XP Eclipse Platform 3.5 Google Plugin for Eclipse 3.5 1.2.0.v2009120

Re: Can google plugin use different jar files for server and client?

2010-02-24 Thread Tim K
ogle.com/webtoolkit/doc/latest/DevGuideOrganizingProjec... > > > > On Fri, Feb 19, 2010 at 2:48 PM, Tim K wrote: > > I have a server version of a class in one jar, and a client version of > > the class in another.  The client version is restricted to JRE > > emu

Can google plugin use different jar files for server and client?

2010-02-19 Thread Tim K
client jar for the client code? *** Server jar *** class X { X() { ... } X( File directory ) { . } ... *** Client jar *** class X { X() { ... } // Can't access a file on client side, so disable this constructor // X( File directory ) { . } ... Regards, Tim K --

Re: GlassPanel in IE6 -- color changes when scrolling

2010-02-05 Thread Tim K
I had problems in the past using a background image in html. It could not scale to fit. http://www.w3schools.com/Html/tryit.asp?filename=tryhtml_bodybgimg Try something like this. Remember to use absolute position. -- You received this message because you are subscribed to the Google Groups

Change default name of @UiField for CssResource

2010-02-05 Thread Tim K
The default name for a CssResource is "style". Can this be changed to "borderstyle"? It seems to work in *.ui.xml but not in *.java. The Eclipse Plug in reports this error. Description: Field borderstyle has no corresponding field in template file DateBox_text.ui.xml Resource: DateBox.jav

Re: UiBinder Templates - Adding a series of HTML elements

2010-02-05 Thread Tim K
Code formatted to 70 columns. - import java.util.Vector; import com.google.gwt.dom.client.Element; import com.google.gwt.dom.client.Node; import com.google.gwt.user.client.ui.HTMLPanel; public class ListPanel extends HTMLPanel{ // aunts should actually be auntsOrUncles o

Re: UiBinder Templates - Adding a series of HTML elements

2010-02-05 Thread Tim K
Damians, Thanks for your reply. Your solution would put month, day and year into a new table. The new table would be nested inside the cell of the original table. This is not quite what I need. I would like three columns in the original table. I have created a new class ListPanel. It is derived f

UiBinder Templates - Adding a series of HTML elements

2010-01-22 Thread Tim K
tufff Trailing Stuff Thanks for your help, Tim K -- 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 gr

Styling CheckBox

2009-12-23 Thread Tim K
I want to change the size of a com.google.gwt.user.client.ui.CheckBox so that it grows/shrinks. I am using a Chrome Browser. It zooms in and out with Ctrl-Plus and Ctrl-Minus. This entry in my css file had no effect. .gwt-CheckBox { width: 1em; height: 1em; padding: 0; margin: 0; } Chrom