Re: Multiple GWT Apps inside one HTML Pages

2012-07-05 Thread david.herv...@gmail.com
Thanks Thomas, I've already done some tests and not I've not observed any kind of troubles but my fear is that if I rebuild the apps later they entered into collision without warning and I don't want my application to work by mistake... Deeper inside GWT and for my personal knowledge, can you

Multiple GWT Apps inside one HTML Pages

2012-07-03 Thread david.herv...@gmail.com
Hello All, I know this question as a lot of thread in this group but I've really found what I want. I want to compile several gwt apps independly the one from each other and load these apps into one HTML pages by inserting the script of each .nocache.js I've read on gwt developper guide

Re: GWTTestCase meddling/not meddling

2011-07-28 Thread david.herv...@gmail.com
It feels like you wish to test your client side code that calls real server side code, isn't it ? If you would like to test your client side code that really calls the server side code, it will be the case if you start a GWTTestCase. You could not have a server test with a client side test

Re: SimpleEventBus : why such a non-predictive behavior implementation ?

2011-07-27 Thread david.herv...@gmail.com
(also you will get more help in gwt-code-reviews.appspot.com than here) Regards! // on the WidgetA.EventType reception is decided to create a widget C create widgetC On Tue, Jul 26, 2011 at 5:11 PM, david.herv...@gmail.com david.herv...@gmail.com wrote: No body concerned ? On 25

Re: SimpleEventBus : why such a non-predictive behavior implementation ?

2011-07-27 Thread david.herv...@gmail.com
help in gwt-code-reviews.appspot.com than here) Regards! // on the WidgetA.EventType reception is decided to create a widget C create widgetC On Tue, Jul 26, 2011 at 5:11 PM, david.herv...@gmail.com david.herv...@gmail.com wrote: No body concerned ? On 25 juil, 10:50

Re: How to package a gwt project into a jar so that it can be included into other projects

2011-07-26 Thread david.herv...@gmail.com
Komal, you have to consider two packaging for your release in order for your project to be used in another project. - one jar for your server side classes (compiled) - one jar for your client side java file (not compiled) that also contains the gwt module, in order the users to include your module

Re: SimpleEventBus : why such a non-predictive behavior implementation ?

2011-07-26 Thread david.herv...@gmail.com
No body concerned ? On 25 juil, 10:50, david.herv...@gmail.com david.herv...@gmail.com wrote: Hi, I'm facing a problem when using the simple implementation of the EventBus. // register widget B to be notified when WidgetA trigger an event register handler of WidgetB on WidgetA.EventType

SimpleEventBus : why such a non-predictive behavior implementation ?

2011-07-25 Thread david.herv...@gmail.com
Hi, I'm facing a problem when using the simple implementation of the EventBus. // register widget B to be notified when WidgetA trigger an event register handler of WidgetB on WidgetA.EventType // dispatch (firingDepth is incremented) WidgetA.fireEvent // my widget is really called !!! that's

Re: Problem with UTF-8

2010-08-03 Thread david.herv...@gmail.com
Hi, Have you specified the UTF-8 before creating file or just change it while your files were created ? I've just copy paste your Label in a project where .java file are UTF-8 encoded and everything works fine. Just check on one of your file the properties that is attributed to it (contextual

Re: is ZK better than GWT..?

2010-08-02 Thread david.herv...@gmail.com
ZK annonces that their approach is a server side centric. Conceptually speaking GWT and ZK are really two different approaches. Main argument for using ZK WAS they have a declarative approach to build the UI. This gap is now obsolote since GWT has the UIBinder. To my point of view the main

Re: CssResources @external and tail-globs

2010-07-28 Thread david.herv...@gmail.com
Thanks, I just have to wait ! On Jul 27, 7:00 pm, lineman78 linema...@gmail.com wrote: Apparently the doc has been updated prematurely and this feature is not available in 2.0, but is in 2.1. On Jul 27, 7:43 am, david.herv...@gmail.com david.herv...@gmail.com wrote: Hello

CssResources @external and tail-globs

2010-07-27 Thread david.herv...@gmail.com
Hello, as mentionned in the CssResource wiki : http://code.google.com/p/google-web-toolkit/wiki/CssResource#External_and_legacy_scopes it may be possible to match tail glob pattern in the annotated @external CSS Class. I've tried this feature with no success. Only the @external fixed CSS name

Re: Dependency injection perf issues

2010-07-12 Thread david.herv...@gmail.com
Hi, the fact that you are using DI does not change your startup time. Your application will take approximately the same time to load if you does the injection by hand. Actually, I think you want to create your view only when you really need it instead of instantiating everything at startup. When

Re: Guice with client-side GWT

2010-05-27 Thread david.herv...@gmail.com
As Kevin mentionned, Gin is the dependency injection framework for GWT. There are some subtleties compared to Guice as the java code is transformed in JS (for example you can not request an injector for an instance of a class). But it is quite the same idea (Gin is partially based on Guice) and

Re: new GWT MVP article (part 2)

2010-04-26 Thread david.herv...@gmail.com
Hi, originally the MVP pattern was design for separating the view from its logic and the model it is displaying (as the MVC). Since the arriving of UIBinder I found the word View misused. Actually, strictly speaking the View is contained in the ui.xml file and the Controller is the corresponding

Re: UIBinder and CSS resources obfuscation

2010-04-15 Thread david.herv...@gmail.com
Yep, I know the @external does the trick, but I was wondering if it exists some kind of global '@external' annotation to tell UIBinder not to obfuscate all classes. @Jeff Chimene : I think you right. My fear is that the UIBinder has to keep this kind of obfuscation/ renaming rules to garantee the

Re: UIBinder and CSS resources obfuscation

2010-04-15 Thread david.herv...@gmail.com
Yep, I have already tried the @external and it does the trick, but I was wondering if it exists some kind of global '@external' annotation to tell UIBinder not to obfuscate all classes. Or perhaps a global property to do that. My fear is that the UIBinder has to keep this kind of obfuscation/

Re: UIBinder and CSS resources obfuscation

2010-04-14 Thread david.herv...@gmail.com
, david.herv...@gmail.com david.herv...@gmail.comwrote: Hi, I'm currently searching around the web to found out how to tell UIBinder not to perform obfuscation (at-all) on css class. I've read codes samples in which it is tell to put inside the .gwt.xml the property

UIBinder and CSS resources obfuscation

2010-04-13 Thread david.herv...@gmail.com
Hi, I'm currently searching around the web to found out how to tell UIBinder not to perform obfuscation (at-all) on css class. I've read codes samples in which it is tell to put inside the .gwt.xml the property CssResource.obfuscationPrefix to empty. But the css class name doesn't have any links