Re: UiBinder.useSafeHtmlTemplates

2011-06-06 Thread magic
I see the addition on the UiBinder page but it still fails to explain, or provide a pointer to an explanation of, how and where to set the useSafeHtmlTemplates property. UiBinder.gwt.xml is mentioned but what/ where is that file? Is it my application's .gwt.xml file? On May 3, 12:10 pm, Stephanie

GWT The type XXX is already defined error on package-private classes with NO previous definition.

2011-04-21 Thread magic
I am getting several The type XXX is already defined errors when I compile my web application. These all occur with package-private classes (those in the Java file of another class but not nested in that class) in a module that is inherited by my web application. I have not been able to determine

Re: GWT 2.0.4 Way to query browser window's document area size in onModuleLoad

2010-11-09 Thread magic
cases body = RootPanel.getBodyElement()). Any suggestions for getting the border height? -Mark On Nov 6, 6:45 am, Craig yavinm...@gmail.com wrote: Have you tried Window.getClientHeight()? On Nov 5, 3:21 am, magic callow_m...@hicorp.co.jp wrote: Hi, I am looking for a way

GWT 2.0.4 Way to query browser window's document area size in onModuleLoad

2010-11-05 Thread magic
Hi, I am looking for a way to query the size of the browser's document window when onModuleLoad is called. I have tried Element body = RootPanel.getBodyElement(); int clientWidth = body.getClientWidth(); int clientHeight = body.getClientHeight(); body.getClientWidth() gives the correct width,

Re: Change default browser in dev mode

2010-10-22 Thread magic
hit the 'Launch Browser' button. Could you post a screenshot of what you're talking about? On Thu, Oct 21, 2010 at 1:32 AM, magic callow_m...@hicorp.co.jp wrote: I am using NetBeans. However the browser is launched by the GWT DevMode gizmo which picks the system default browser. So I

Re: Change default browser in dev mode

2010-10-22 Thread magic
for you...http://stackoverflow.com/questions/856108/how-to-change-settings-in-n... On Wed, Oct 20, 2010 at 10:32 PM, magic callow_m...@hicorp.co.jp wrote: I am using NetBeans. However the browser is launched by the GWT DevMode gizmo which picks the system default browser. So I don't

Re: Change default browser in dev mode

2010-10-20 Thread magic
On Oct 21, 6:37 am, Chris Conroy con...@google.com wrote: Even the old school GWTShell Swing GUI has a Copy URL button. So I really can't make sense of the OP's post. Please try reading the last paragraph of my post again where I note that I can use copy and paste and refer to the annoyance

Re: Change default browser in dev mode

2010-10-20 Thread magic
I am using NetBeans. However the browser is launched by the GWT DevMode gizmo which picks the system default browser. So I don't understand what Eclipse's Window | Web Browser menu item would have to do with it. Please enlighten me. On Oct 21, 6:22 am, A. Stevko andy.ste...@gmail.com wrote:

passing multiple variables from the server to client

2010-02-24 Thread Magic
I'm new to gwt and I'm trying to pass data from the server (database) to the client. I'm able to pass one variable successfully let's say someone first name, but I can't not seem to find a way to pass two variables to the client using RPC, i.e. an ID and NAME. Can someone help me with this I know