Re: Future of GWT survey

2012-10-26 Thread t.dave
have the results of this survey been posted anywhere? if not, any ETA on when they might be? much thanks! On Wednesday, September 19, 2012 6:23:24 AM UTC-7, Joonas Lehtinen wrote: > > What is your opinion on the future of GWT? > How should GWT develop? > What technologies should it better sup

Re: jquery?

2011-10-26 Thread t.dave
my $.02 would be that it all depends on what kind of project/app/ website you're building. if you want to have a true web application where the page seldom if ever does a full refresh and you want to have a lot of fancy and super awesome functionality, then GWT is the way to go. i've heard that t

Re: best architecture for GWT + Spring

2011-07-14 Thread t.dave
i'd also agree with going the route of #2, and keeping GWT-RPC for convenience. yes, it's nice architecturally to say your client and server are loosely coupled via JSON, but in practice writing JSNI objects to read the JSON is hard to debug and can be rather tedious. i did that previously with a

Re: .setVisible(true); // I can't see what I am missing

2011-06-27 Thread t.dave
".setVisible(true); // I can't see what I am missing" - enjoyed the pun. :) -- 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 ema

Spiffy UI?

2011-05-25 Thread t.dave
is anyone familiar with the Spiffy UI framework? http://www.spiffyui.org/ it potentially looks very interesting but i've only given it a quick once-over, and haven't dug in enough to really figure out pros & cons. -- You received this message because you are subscribed to the Google Groups "Go

Re: User GWT to develop android apps that are not browser based?

2011-05-19 Thread t.dave
try GWTMobile: https://github.com/dennisjzh/GwtMobile i haven't used it myself but believe it does what you're looking for. On May 19, 2:55 pm, cri wrote: > I just skimmed through the Google IO talk by Chris Ramsdale on using > GWT to build mobile web apps, hosted on Android for example. > Inte

uploading to amazon s3

2011-01-06 Thread t.dave
hi all, wondered if anyone has had any success doing reliable and robust uploads to amazon s3 directly from the browser? i need to upload mp3 files at 3-10ish MB a pop. i have it working using the GWT-S3 library (http://code.google.com/p/ gwt-s3/) which basically translates into doing glorified f

Re: Database and GWT

2010-08-05 Thread t.dave
iBATIS sounds interesting so i just looked it up... has support been discontinued as of june 2010? there's something on the top of the page saying it's been put in apache's "attic", which is not something i'm familiar with but it doesn't sound promising. On Aug 5, 5:26 pm, charlie wrote: > Don'

Re: Any Good GWT Photo Uploaders?

2010-08-05 Thread t.dave
try gwtupload. http://code.google.com/p/gwtupload/ i'm not sure if it can handle uploading 150 files simultaneously but it has multiple upload capability. as well, there's a separate mailing list specific to that for questions. On Aug 5, 1:43 pm, GKotta wrote: > Are there any good GWT photo u

Re: The Music Collective, a GWT project

2010-07-12 Thread t.dave
Nice app. Any concerns about music industry problems? On Jul 12, 3:08 pm, charlie wrote: > Hi all! > > So I'm launching my first GWT > app,http://www.the-music-collective.com/listen/MP3Player.html.  A year ago > pandora started charging for more than 40 hours a month, so I decided to > write a

Re: Mixing Projects

2010-04-16 Thread t.dave
have you put the code of project B somewhere that project A can see it when it is deployed? if you put different projects on the build path in eclipse it will compile fine but i don't think that cuts it when it comes time to deploy. i'm doing something similar, where i have one GWT project reusin

Re: How to scroll page to element

2010-04-13 Thread t.dave
lToTop(); }-*/; just one more option. On Apr 12, 11:19 am, Brandon Turner wrote: > You can get away without a ScrollPanel if you want to as well.  Something > like: > > verticalPanel.getElement().setScrollTop(secondFlexTable.getElement().getAbsoluteTop()); > > -Brandon > >

Re: How to scroll page to element

2010-04-12 Thread t.dave
use ScrollPanel.setScrollPosition(). that sets the vertical scroll position of the scrollpanel, which you will need to calculate. try something like this: new ClickHandler() { public void onClick( ClickEvent event ) { int tableTop = secondFlexTable.getAbsoluteTop(); scrollPanel.setScro

Re: ***Exciting Java Opportunity in Hampshire***

2010-04-08 Thread t.dave
I would like to see a gwt jobs/recruitment/etc list. I'm not in the market now but always find it interesting to see what technologies are grouped together in job postings. And as GWT (hopefully) :) becomes more pervasive there will presumably be more of a need for a jobs list. On Apr 8, 10:33 

Re: upgrading to 2.0, problem with adding style name on click

2010-04-01 Thread t.dave
that's awesome. thanks for the quick response! On Apr 1, 8:50 pm, kozura wrote: > I think you actually just want Widget sender = > (Widget)event.getSource();, then you can continue as before.. > > On Apr 1, 7:45 pm, "t.dave" wrote: > > > so i'm finally

upgrading to 2.0, problem with adding style name on click

2010-04-01 Thread t.dave
so i'm finally in the process of upgrading from 1.5.3 to 2.0, and converting all my listeners to handlers. i have a listener class that is always used in conjunction with an image - when the image is clicked on the listener adds a style name indicating it's been clicked. current code, in the clas

Re: Server side: start independent Thread at deploy on server

2010-03-30 Thread t.dave
just initialize the thread in the servlet's init() method and shut it down in the servlet's destroy() method. then just make sure that the servlet is started on server startup by adding this to the servlet definition in your web.xml: i think that should be the same regardless if you're running

Re: GWT RPC error

2009-12-23 Thread t.dave
it looks like you're referencing code on the GWT client side that the GWT compiler doesn't support. this kind of problem can be tricky, because it looks like it compiles ok in eclipse. remember that your GWT client packages will end up in the browser as javascript, and so GWT only supports only a

Re: Tomcat RPC Failure on Lost Client Connections.

2009-11-16 Thread t.dave
there's a bit of content on the web about this problem. if memory serves it was at least partly blamed on the RPCServletUtils.readContentAsUtf8() method - that sometimes the request doesn't make it to the server. this was blamed on the vagaries of the internet. i have it all the time in my web a

Re: How to capture function keys ?

2009-11-10 Thread t.dave
i'm not 100% sure how this works, but will throw it out there in case somebody knows or can figure it out. the idea of a hot key was floated for my web app. on a forum a guy offered to create browser plugins for my app that would be able to capture function keys. here's some of the info he sent

Re: Help - my web site based on GWT fails to load in IE8

2009-09-25 Thread t.dave
i had IE8 issues when it first came out. i'm still on GWT 1.5.3 - thought later versions should play nicer with IE8, but what fixed my issue was adding the following to the html host page: not sure if that's a good long term solution, but made my app go from non-functional to functional. hope