Re: Upgrade 1.5.3 to 1.7.1

2009-11-11 Thread tskaife
There was an issue like that in 1.6 which I think has been fixed in 1.7 http://code.google.com/p/google-web-toolkit/issues/detail?id=3510 try adding -Xss1024k On Nov 11, 2:23 pm, Vince vicenci...@aol.com wrote: Hello, Is this script correct? @java -Xmx256M -cp

Re: hosted mode crash in Linux

2009-10-30 Thread tskaife
I was having the same problem and never found an answer, like the person above I tried java 1.5.0_21, 1.6.0_10, 1.6.0_16 and tried GWT 1.7.1, 1.6.4, 1.5.3. I just ended up updating to GWT 2.0 so if you can go to 2.0 now might be a good time. On Oct 30, 5:33 am, getaceres getace...@gmail.com

Re: date.compareTo() method doesn't work

2009-10-30 Thread tskaife
I had the same problem, as well, I think it had something to do with where I got the date object from for me (if I create 2 new date objects on the front end it would work fine, but if I got one of them from the database then I would have issues). I just ended up doing a getTime() on both of my

Re: ListBox and listeners.

2009-10-25 Thread tskaife
The way I would do it is just to make a method out of what you call in your ListBox ChangeHandler then call that method anytime you set the value of the ListBox. Though depending on how complicated the page is or how many list boxes you have that could be a little tricky. On Oct 25, 7:52 pm,

Re: inheritance not allowed???

2009-10-22 Thread tskaife
Don't know if I'm thinking right here but why implement EntryPoint in MyEntryPoint and just implement EntryPoint in GWTTest. Like so... public class MyEntryPoint { // My custome methods... } public class GWTTest extends MyEntryPoint implements EntryPoint { @Override public void

Re: Using Gilead with GWT 2.0 ms1

2009-10-18 Thread tskaife
/RPCCopy.java RPCCopy_GWT20.java http://trg-commons.googlecode.com/files/RPCCopy_GWT20.java Once you get these files in your project just make sure to change the package accordingly. On Oct 9, 1:35 pm, tskaife tska...@gmail.com wrote: I just updated toGWT 2.0ms1 and noticed that I was getting

Re: GWT 2.0 ms1 RPC issue IncompatibleRemoteServiceException: Parameter 0 of is of an unknown type 'java.lang.String/2004016611'

2009-10-18 Thread tskaife
classes here http://groups.google.com/group/google-web-toolkit/browse_thread/thread/ca5722230f14f54e/a17af6e46afbd7c6?hl=en#a17af6e46afbd7c6 On Oct 16, 1:39 pm, tskaife tska...@gmail.com wrote: So I tried another simpler project of mine and was getting the same error as above with a few more errors

GWT 2.0 ms1 RPC issue IncompatibleRemoteServiceException: Parameter 0 of is of an unknown type 'java.lang.String/2004016611'

2009-10-15 Thread tskaife
While running in either hosted mode, or compiled I get this error. I have no problems with RPC calls that pass primitive types. But I've tried both java.lang.String and java.lang.Long and get the same results. I've tried both JDK 1.6.0_10 and 1.5.0_21 to no avail. I'm on Linux, if that matters,

Re: IE freeze for GWT Flex Table with 300 rows

2009-10-14 Thread tskaife
Yes, adding that many elements, and especially tables will take a long time to render. One thing I want to let you know is that a HorizontalPanel is rendered as a table itself. So basically you have a table of one column of which each row contains another table that only has one row. Rendering

Using Gilead with GWT 2.0 ms1

2009-10-09 Thread tskaife
I just updated to GWT 2.0 ms1 and noticed that I was getting an error that the constructor for RPCRequest doesn't exist (the constructor now inclues a int flag parameter). java.lang.NoSuchMethodError: com.google.gwt.user.server.rpc.RPCRequest.init(Ljava/lang/reflect/

Re: RichTextArea:setEnabled

2009-09-29 Thread tskaife
You don't need to toolbar to use the RichTextArea, but it's pretty useless without it since you won't be able to do any formatting with the text. But as far as disabling the RichTextArea, I don't think it's going to work since the RichTextArea is rendered as an iframe element. If you want to