GWT library conflicts

2009-05-28 Thread Pandaman
Hello all, I am having trouble running my GWT app due to library conflicts. In my case, it seems that my version of apache catalina is conflicting with GWT's version. I ascertained this from the exception I received when running my app: Exception in thread main java.lang.NoSuchMethodError:

GWT build takes forever

2009-06-01 Thread Pandaman
I am trying to compile a GWT module located in a source folder with quite a few files. I am using ANT builder to do this. Here is an excerpt from my build file that shows the GWT compile target: path id=gwt.project.class.path fileset dir=gen / pathelement

Issue with compiling GWT with many libaries

2009-06-03 Thread Pandaman
Hello all, I am trying to run an ant build script that compiles GWT. This script includes a large number of libraries, each with a relatively long path. My GWT code only touches some of these libraries; however, it is convenient to include all of the libaries from the directory containing all

Excluding methods from GWT modules

2009-07-01 Thread Pandaman
I have a class that I want to include in a GWT module. Unfortunately, it has a method that has functionality unsupported by GWT (it uses Class.isInstance in case you're curious). I do not use this method in my GWT application, but other non-GWT apps use this method, so I cannot simply remove it.

Does GWT 1.7 support Class.getSimpleName()?

2009-07-15 Thread Pandaman
Does GWT 1.7 support Class.getSimpleName()? --~--~-~--~~~---~--~~ 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

Re: Does GWT 1.7 support Class.getSimpleName()?

2009-07-16 Thread Pandaman
But that is for GWT 1.6, I already know what this supports. On Jul 16, 1:38 am, Adam T adam.t...@gmail.com wrote: GWT supports the following:http://code.google.com/webtoolkit/doc/1.6/RefJreEmulation.html //Adam On 15 Juli, 19:00, Pandaman p4nda...@gmail.com wrote: Does GWT 1.7 support

Re: Does GWT 1.7 support Class.getSimpleName()?

2009-07-16 Thread Pandaman
]     public String getSimpleClassName() {         String className = this.getClass().getName();         return className.substring(                 className.lastIndexOf(.) + 1, className.length());     } [/code] 2009/7/15 Pandaman p4nda...@gmail.com Does GWT 1.7 support Class.getSimpleName

Re: Does GWT 1.7 support Class.getSimpleName()?

2009-07-16 Thread Pandaman
Apparently not. http://stackoverflow.com/questions/1132692/does-gwt-1-7-have-support-for-class-getsimplename On Jul 15, 1:00 pm, Pandaman p4nda...@gmail.com wrote: Does GWT 1.7 support Class.getSimpleName()? --~--~-~--~~~---~--~~ You received this message because

Programmatically resize browser window

2009-07-22 Thread Pandaman
For the GWT app I'm developing, I need to programmatically change the height of the browser window. Is there a way to do this in GWT? I've tried the following: public static native void setWindowHeight(final int height) /*-{ $wnd.resizeTo($wnd.outerWidth, height); }-*/; But this does not

Re: Programmatically resize browser window

2009-07-22 Thread Pandaman
height). On Jul 22, 5:46 pm, Pandaman p4nda...@gmail.com wrote: For the GWT app I'm developing, I need to programmatically change the height of the browser window. Is there a way to do this in GWT? I've tried the following: public static native void setWindowHeight(final int height

Ext-GWT TreeGrid indirectly calls a GWT-RPC callback? Why?

2009-07-29 Thread Pandaman
I am using GWT-RPC to populate Ext-GWT TreeGrids with data from a server. I am using 4 callbacks to populate 6 TreeGrids. As the callback onSuccess function modifies the TreeGrid by inserting rows, the TreeGridView needs to render the rows. The callback class is called

Adding resize listener/handler to VerticalPanel

2009-08-05 Thread Pandaman
How do I add a listener/handler to a VerticalPanel such that it is triggered when the VerticalPanel changes in size? I've basically tried the following: VerticalPanel myPanel = new VerticalPanel(); //... code to add child widgets that may change the size of the parent vertical panel ...