Re: GWT CellTable Row Height Problem

2011-07-13 Thread DanG
Did you solve this? I'm having the same problem. -- 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 google-web-toolkit+un

Re: How to call existing javascript functions (without arguments) in GWT?

2011-03-17 Thread Thai Dang Vu
It's easy for the 1st question: addSymbolButton.addClickHandler(new ClickHandler() { @Override public void onClick(ClickEvent event) { test(); } }); private native void test() /*-{ $wnd.testFunction(); }-*/; where testFunction is the existing javascript function. I still

Re: Unable to bring up the hosted mode console for my web application

2010-04-12 Thread DanG
@kozura I assume the GWT sdk is setup correctly because the field for version number is populated. Also, you'll see in my original post that I did try and getting Devmode running as a java application, but ran into issues. On Apr 12, 5:06 am, kozura wrote: > Alternatively you can run DevMode as

Re: Unable to bring up the hosted mode console for my web application

2010-04-12 Thread DanG
wser (as it says just > above the URL). Then you'll have to install a plug-in. > > Ian > > http://examples.roughian.com > > On 12 April 2010 00:58, DanG wrote: > > > > > When I create a GWT project in eclipse with gwt2.0.2 and google app > > engine 1

Unable to bring up the hosted mode console for my web application

2010-04-11 Thread DanG
When I create a GWT project in eclipse with gwt2.0.2 and google app engine 1.3.2 and the most updated eclipse plugin for galileo: I can create the project but when I run->web application, I get a google eclipse console ("Development Mode") message telling me the URL I can access the app from (that'

Attaching GWT widgets to elements inside iframes

2009-05-07 Thread DanG
Can someone explain the way that GWT deals with iframes in this regard. If I want to create my own widgets or for that matter, use other widgets in an iframe. The situation is that I have cached versions of arbitrary webpages loaded into iframes (to get around the iframe domain problem) and then

JSNI question (extending ManagedIFramePanel, wrapping some other methods)

2009-03-22 Thread DanG
public native Document getFrameDocument()/*-{ var panel = th...@com.gwtext.client.widgets.component::getOrCreateJsObj()(); var doc = panel.getFrameDocument(); //alert(doc); if (doc) return doc; return null; }-*/; if in my native javascr