Designer Problem : « uibinder template should be in client package »

2011-03-28 Thread HommeDeJava
Greetings folks, I've tried to add UIBinder Composite widget in a project which was initiated without UiBinder using GWT plugin. So, when I tried to open xxx.ui.xml into the designer view, I've got the error « uibinder template should be in client package » You are attempting to use UiBinder for

Re: Designer Problem : « uibinder template should be in client package »

2011-03-28 Thread HommeDeJava
Hi, I supposed that you must put the file in client package. Yes indeed I've put the myUIBinderComposite.ui.xml and myUIBinderComposite.java files into the client package It's when I try to use the GWT Designer opening the myUIBinderComposite.ui.xml file using the Design Tab that I've got

java.lang.NoClassDefFoundError: org/apache/http/client/ClientProtocolException

2011-03-03 Thread HommeDeJava
Greetings folks, I would like to share something I've found about the potential conflict between AppEngine config in Eclipse GWT plugin and use of HttpClient code in your server for instance to build a proxy server. I've already known about constraints of AppEngine on server but I've forgot to

How to add target=_blank to hyperlinks created with RichTextToolbar

2010-11-22 Thread HommeDeJava
Greetings folks, I would like to add target=_blank to hyperlinks created with RichTextToolbar implementation (i.e. using the Create Link button) in order to open the link into a new tab / page. The only trick I've seen yet is to implement a workaround using JSNI JavaScript code but I have to

MathML support...

2010-09-30 Thread HommeDeJava
Greetings folks How to add support for equations and MathML into your GWT applications... I proved to myself the faisability using the JavaScript library ASCIIMathML.js from Peter Jipsen de Chapman University (GNU LGPL 2.1+ license). http://www1.chapman.edu/~jipsen/mathml/asciimath.html So,

Looking for a good MVP framework

2010-05-13 Thread HommeDeJava
Greetings folks, In order to avoid « reinventing the wheel », I'm looking for a good MVP (model-view-presenter) framework to use with GWT. Although the MVP pattern with BusEvent has been a href=http:// code.google.com/intl/fr-FR/events/io/2009/sessions/ GoogleWebToolkitBestPractices.html

Re: Looking for a good MVP framework

2010-05-13 Thread HommeDeJava
Greetings, Gwt-Platform is more than a hobby project. It'll grow with GWT and even if it's young, it's already more powerful than Gwt-Presenter, Gwt-Dispatch (together). I don't really used the other one, but there's a lot of thing that makes this project awesome and there's a lot of features

How to create a MenuBar with images/icons

2009-09-16 Thread HommeDeJava
Greetings folks, I have a nice solution in order to create a MenuBar with images/icons that does not used the MenuBar.MenuBarImages. 1) I'm using a standard ImageBundle, for instance MyImageBundle which extends ImageBundle interface with a folder that contains my images. import

Re: Announcing GWT 1.6...and quite a bit more

2009-04-08 Thread HommeDeJava
Wow! Seems to be Christmas in April! Fortunately, you have not made the announcement last week because we thought it was a April 1st hoax! Thanks a lot to all your great team! Claude On Apr 7, 11:57 pm, Bruce Johnson br...@google.com wrote: Hi Folks! Exciting news today. Rather than

Re: Problem with GWT Widget Printing

2009-04-06 Thread HommeDeJava
Greetings, How about replacing DeferredCommand.add(printFrameCommmand); which is deprecated by DeferredCommand.addCommand(printFrameCommmand); Claude On Apr 5, 12:31 pm, Freller andre.frel...@gmail.com wrote: The beauty of open source! I haven't migrated to 1.5 yet, so this error is new to

Re: Problem with GWT Widget Printing

2009-04-06 Thread HommeDeJava
Hi Jay, It's working fine now with the DOM.toString() method you have suggested I was speaking about the deprecated method DeferredCommand.add... Sorry if I had been confusing! Thanks a lot for your great solution! Claude On Apr 6, 1:42 pm, jay jay.gin...@gmail.com wrote: I'm not sure what

Problem with GWT Widget Printing

2009-04-03 Thread HommeDeJava
Greetings folks, I have an application developed in GWT and I would like to print tall GWT widgets (i.e. taller than one page). I found a method that works with Safari and Chrome browsers but it didn't work with FireFox. Maybe, it's related to the fact that Safari and Chrome are based on the

Re: Problem with GWT Widget Printing

2009-04-03 Thread HommeDeJava
, element.toString() did the right thing. When I moved to GWT 1.5.3, I had to switch to using DOM.toString( elem ); jay On Apr 3, 11:53 am, HommeDeJava claude.coulo...@gmail.com wrote: Greetings folks, I have an application developed in GWT and I would like to print tall GWT widgets (i.e

Re: GWT for Social Networking Site (GWT and CMS)

2008-12-17 Thread HommeDeJava
Greetings, You should definetely look at OpenSocial and the Shindig server implementation (http://incubator.apache.org/shindig/). Shindig directly offers REST and RPC APIs and gateways to outside CMS in Java and PHP. On the frontend side, GWT offers almost all the « gadgetries » you could need

MathML support??

2008-10-27 Thread HommeDeJava
Greetings GWT folks, I would like to use MathML in my GWT application that should be used to display science course content. 1) It's just for displaying, no editing 2) I have to only support FireFox for now, and I know that Firefox has MathML support built-in. 3) I have read many threads into