RE: Exceptions not showing up in Dev Mode Panel

2010-11-05 Thread Perelman Nathan (Nathan)
That was it, thanks for the quick help. Adding $entry() around my callbacks fixed it. _ From: google-web-toolkit@googlegroups.com [mailto:google-web-tool...@googlegroups.com] On Behalf Of John Tamplin Sent: Friday, November 05, 2010 15:17 To: Rajeev Dayal Cc: google-web-toolkit@googleg

RE: Exceptions not showing up in Dev Mode Panel

2010-11-05 Thread Perelman Nathan (Nathan)
No, I didn't want to go to the trouble of converting my existing Eclipse projects. _ From: google-web-toolkit@googlegroups.com [mailto:google-web-tool...@googlegroups.com] On Behalf Of Rajeev Dayal Sent: Friday, November 05, 2010 14:21 To: google-web-toolkit@googlegroups.com Subject: R

RE: Error on 64bit System

2008-10-16 Thread Perelman Nathan (Nathan)
I'm guessing that gwt-dev-linux.jar is not on your classpath. (Or whatever the correct gwt-dev jar is for your OS). From: Google-Web-Toolkit@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Pavel Byles Sent: Thursday, October 16, 2008 15:09 To: Google-Web-T

RE: GWT and Firefox

2008-10-14 Thread Perelman Nathan (Nathan)
s > ones. > > So, question - does this mean that I have to rename mine and then use > the SetStyle method to get this working? > > .gwt-StackPanel { > > } > > .gwt-StackPanelItem gwt-StackPanelItem-first{ >         } > > .gwt-StackPanel .gwt-StackPanelItem

RE: GWT and Firefox

2008-10-14 Thread Perelman Nathan (Nathan)
Try using Firebug (it's a Firefox plugin) to find out what styles (if any) are being applied and where they come from. -Original Message- From: Google-Web-Toolkit@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Taff Sent: Tuesday, October 14, 2008 17:47 To: Google Web Toolkit Su

RE: FixedWidthgrid.autoFitColumnWidth no longer in the 9/4 drop

2008-10-10 Thread Perelman Nathan (Nathan)
I got around this issue by creating a ScrollTable a different way from GWT. Where the incubator ScrollTable (current, haven't looked at gen2), uses a separate table for header, body, and footer, if you just use the HTML thead, tbody, and tfoot elements, you can easily get autofit. Then you can scr

RE: Problem with javascript accessing Java fct.

2008-10-10 Thread Perelman Nathan (Nathan)
Actually, now that I think about it, I'm pretty sure that the code in onModuleLoad doesn't get run until after the page is fully loaded. So you can't have static JavaScript in your HTML that runs right away call functions exported from Java that aren't there until after the page loads. You could u

RE: Problem with javascript accessing Java fct.

2008-10-10 Thread Perelman Nathan (Nathan)
Try putting the call to getJavaValue() (in the html) after you include the nocache.js file. -Original Message- From: Google-Web-Toolkit@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mogoye Sent: Friday, October 10, 2008 10:44 To: Google Web Toolkit Subject: Problem with javascri

RE: JSONNumber getValue() and ints

2008-09-30 Thread Perelman Nathan (Nathan)
Use doubleValue() and then cast to int. All JavaScript numbers (and therefore all JSONNumbers) are really doubles. -Original Message- From: Google-Web-Toolkit@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of seven.reeds Sent: Tuesday, September 30, 2008 16:43 To: Google Web Toolkit

RE: Warning about using float fields with RPC (shocking bug)

2008-09-18 Thread Perelman Nathan (Nathan)
I doubt that this will be resolved since all numbers in JavaScript are treated as doubles. I'm not really sure what the correct translation of floats in client side Java code should be, but just treating them as doubles seems like a reasonable solution. Also, the serializer has no way of knowing

RE: slow scrolling in gwt

2008-09-15 Thread Perelman Nathan (Nathan)
I suspect your problem is that you seem to be rebuilding the entire contents every time you add a line. Try using a VerticalPanel inside a ScrollPanel to hold your chat lines (one HTML widget per line), instead of using a single HTML widget. -Original Message- From: Google-Web-Toolkit@goo

RE: Best solution for client-side graphing in GWT?

2008-09-12 Thread Perelman Nathan (Nathan)
I'm aware that that is possible, I'd rather not reinvent the wheel myself. Do you have a library that is available for others to use? Do you have a website or some more information? -Original Message- From: Google-Web-Toolkit@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMA