Re: Is there a way to copy all maven referenced jars to the war/WEB-INF/lib

2011-01-30 Thread Gabriel Guerrero
Hi , first you need configured the war to plugin to use war as warSourceDirectory, after that use mvn war:inplace and that will copy the libraries to your lib folders, check the maven war plugin web page for more details, also I recommend to check the maven gwt puglin website, they have examples

Re: GWT 2.0.3 + Maven2 + Eclipse

2010-03-19 Thread Gabriel Guerrero
You can also just use an ant task or the exec plugin to in maven to execute the compiler, I use an ant task in maven. To debug use the eclipse gwt plugin Cheers Gabruel like this profile idcompileJS/id properties

Re: How to correct IE font size problem?

2010-03-03 Thread Gabriel Guerrero
Hi Iembas The way I solved is using the GWT CssResorce you can do stuf like @if !user.agent ie6 { ... } for special style for IE in your css I recommend you to read http://code.google.com/webtoolkit/doc/latest/DevGuideClientBundle.html#CssResource Cheers Gabriel On Mar 3, 1:30 pm, Mike

Re: SplitLayoutPanel - Is there a way to set splitter position programmatically?

2010-01-12 Thread Gabriel Guerrero
Hi Shiang I posted a solution for this in the following thread http://groups.google.com/group/google-web-toolkit-contributors/browse_thread/thread/d08a30d356aef5c1 Cheers Gabriel On Dec 5 2009, 12:23 pm, shiang sfk...@gmail.com wrote: Hi all, Do you know is there any workaround solutions to

Re: GWT Incubator Status Update and Schedule

2010-01-12 Thread Gabriel Guerrero
+1 For at least doing another release compatible with gwt 2, I use the FastTree and the PagingScrollTable, and it will be nice to have a version of those widgets that support the new layout system, for what I saw in the trunk the seem to be already compatible with the new layout, although I have

[gwt-contrib] Re: FastTreeItem Selection problem

2009-08-05 Thread Gabriel Guerrero
, Gabriel Guerrero gabrieldavidguerr...@gmail.com wrote: Hi All, Currently the FasTree when a addSelectionHandler is added is  only executed when a FastTreeItem is selected, if the user clicks again in a already selected item it will not be triggered again.      In my app i use the tree

[gwt-contrib] FastTreeItem Selection problem

2009-07-26 Thread Gabriel Guerrero
Hi All, Currently the FasTree when a addSelectionHandler is added is only executed when a FastTreeItem is selected, if the user clicks again in a already selected item it will not be triggered again. In my app i use the tree to open tabs or dialogs , so sometimes the user closes the tab

Re: GWT + OpenID - experiences?

2009-06-23 Thread Gabriel Guerrero
There is no problem to implement openId in gwt, we did in our project, (we support normal login and openId) what we do is at the login page the login submit button opens a open id web site in a new window when the user finish the login in the new window open id provider calls back a user page in

Transforming a FastTreItem Interrior node to Leaf

2009-01-27 Thread Gabriel Guerrero
Hi All, im using the FastTree library from the incubator, i have a case where i want to transform an interior node to a leaf node, i can do it the otherway around using the becomeInteriorNode(), but there is no becomeLeafNode, i was checking the history of the class and at some point there was a