List Box widgets like in gmail

2010-07-09 Thread Simon B
Hi, I need to incorporate into a filter widget functionality like that found in gmail in the "Move to", "Labels" and "More actions" List Box widgets that are found in the gmail mail application. Basically so that I can use the checkboxes and also they need to support all the event handling as well

Re: firebug aborted *.cache.html

2010-04-19 Thread Simon B
I think this is a red herring / non problem, when I changed the config of my apache to: SetOutputFilter DEFLATE ExpiresActive On ExpiresDefault "modification plus 2 years" SetOutputFilter DEFLATE ExpiresActive On ExpiresDefault "now" and then in f

Re: Accent Agnostic SuggestOracle / SuggestBox

2009-06-22 Thread Simon B
Hi Gscholt, Thanks for the your response: > I find it strange that it's not an easily extendable class myself, but > yes, you'll need to implement an oracle yourself. > You can just copy the MultiWordSuggestOracle code and adapt it I guess > (guessing, not read the copyright notice actually) Th

Re: Hibernate4GWT with GWT 1.5 & Mysql

2009-02-18 Thread Simon B
I know you've explicitly got the autoreconnect as a property. Even so, if you haven't already tried it, you could try actually sticking the autoReconnect onto the end of you connection url : so it would look like this: jdbc:mysql://192.168.1.101:3306/pianetabarche?autoReconnect=true Cheers Simo

Re: Dialog Box HELP

2009-02-18 Thread Simon B
Hi, I think I had a similar problem, I think what you may be doing is adding a click listener to the button to open a dialog box, then once you have closed the dialog box, you may be forgetting to remove the click listener from the button. e.g. Button clickButton = new Button("Open Sesame!"); c

Re: NodeList does not extend Iterator

2009-02-02 Thread Simon B
a.awt.List / java.swing.JList, I'll check that out Simon On Feb 2, 6:38 am, Lothar Kimmeringer wrote: > Simon B schrieb: > > > I apologise if this is a stupid question, or If I'm missing something, > > but why doesn't > > com.google.gwt.xml.client.NodeList >

NodeList does not extend Iterator

2009-02-01 Thread Simon B
Hi, I apologise if this is a stupid question, or If I'm missing something, but why doesn't com.google.gwt.xml.client.NodeList extend java.util.Iterator it would be handy as then NodeList could be used with the shortened for each block a la: for (Node aNode : nodeList) { } Rather than

Re: GWT maps API

2009-01-04 Thread Simon B
Check out the gwt google maps page: http://code.google.com/docreader/#p=gwt-google-apis&s=gwt-google-apis&t=MapsGettingStarted You need to download the maps api module on this page: http://code.google.com/p/gwt-google-apis/ this is the zip file (there's a tar.gz on the same page (right hand si

Re: IDE for GWT

2008-12-26 Thread Simon B
I also use Intellij it handles many aspects of GWT development very nicely; namely - internationalization / resource bundling, module imports, refactors, GWT RPC, creating new modules, CSS class referencing, you can also use hosted mode within intellij with its build in servlet container, although