Re: Meet GWT's new sexy cousin: Lienzo!

2012-11-01 Thread Gabriel
Congratulations Emitrom Team! Keep up the excelent work! Regards, Gabriel. El jueves, 1 de noviembre de 2012 00:53:01 UTC-3, Alfredo Quiroga-Villamil escribió: > > *Meet GWT's new sexy cousin: Lienzo!* > > Today we are extremely happy to announce the alpha release of our

Re: MVC + Command Pattern + Code Splitting?

2011-08-03 Thread Gabriel
Check out GWTP: http://code.google.com/p/gwt-platform/ On Aug 1, 5:28 pm, gktcs wrote: > Has anyone been able to get "complete" code splitting working with gwt- > dispatch or similar command pattern implementation? > > We've got a rather large MVC-based application, and our code splitting > is do

Re: HTML widget sometimes doesn't render 3rd party Javascript widget

2011-05-26 Thread Gabriel
Hi, First, when you want to access variables and functions from JSNI that are outside of the GWT code you must use the $wnd. prefix, for example to run the JavaScript alert() function from JSNI you would write $wnd.alert('something'); Second, you may be trying to call external JavaScript functions

Re: Generating GWT widgets based on an XML template

2011-05-25 Thread Gabriel
So you can write a generic mechanism that handles styles, attributes and innerText and that should cover everything. On May 25, 7:26 pm, Arshad Nadheem wrote: > Thanks for the response Gabriel... it's the 1st option that I'm > looking for. Generating HTML is not an option for me, since

Re: Generating GWT widgets based on an XML template

2011-05-25 Thread Gabriel
exactly you need from the client side. You should minimize the use of widgets as much as possible, and use them only if you need to capture events. Otherwise it is recommended to use HTML. Gabriel On May 25, 9:12 am, Arshad wrote: > Hi all, > > I'm pretty new to GWT, so please bear.

Re: Get keypress info without an event.

2011-05-24 Thread Gabriel
Right, to capture events anywhere on the client use Event.addNativePreviewHandler() On May 24, 11:23 pm, zip184 wrote: > I thought of that.  The problem is that the user might hold the key > down before they're over the object I'm capturing the events on.  So > in that case I wouldn't get the eve

Re: Get keypress info without an event.

2011-05-24 Thread Gabriel
I think you can achieve what you want by doing the same (sink in constructor + onBrowserEvent() logic) with ONKEYDOWN and ONKETUP - add a boolean variable to your class and in onBrowserEvent() set it to true when you detect ONKEYDOWN with Ctrl and set it to false similarly for ONKEYUP. Then you can

Re: GWT Serialization--Default Constructor Presence

2011-05-23 Thread Gabriel
Since reflection is used to instantiate the classes with something like SerializedType.newInstance() , the default constructor has to be present. If the mechanism would allow for instantiation using non- default constructor, that would have required more configuration in your code and also that wou

Re: Get keypress info without an event.

2011-05-23 Thread Gabriel
Hi, I think what you want can be done by calling sinkEvents(Event.ONKEYPRESS) in the constructor and overriding onBrowserEvent() like so: @Override public void onBrowserEvent(Event event) { super.onBrowserEvent(event); if(event.getTypeInt == Event.ONKEYPRESS) { // your logic here }

GWT Eye Candy - good looking widgets

2011-05-21 Thread Gabriel
Hi, I started this project http://code.google.com/p/gwt-eye-candy/ which currently contains buttons inspired by the Closure library buttons, and hopefully will grow with more nice looking GWT widgets. I hope it is beneficial to the community. Gabriel -- You received this message because you

Re: onKeyDown getting incorrect keyCode

2011-04-11 Thread Gabriel
See this thread: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/4d57e31e9a863c09 Maybe with getNativeEvent() method work. Regards. On 11 abr, 13:32, azuniga wrote: > I've got a textbox that I only want positive floats in. So pretty much > I just want to allow digits and

Re: TextBox KeyPressEvent doesn't function in Firefox 4

2011-04-08 Thread Gabriel Volpe
Thanks Nicolas, that's work! 2011/4/8 Nicolas Antoniazzi > As a workaround, you can use event.getNativeEvent().getKeyCode() == > KeyCodes.KEY_ENTER > > 2011/4/8 Gabriel > >> Eg. >> >> txtPwd.addKeyPressHandler(new KeyPressHandler() {

TextBox KeyPressEvent doesn't function in Firefox 4

2011-04-08 Thread Gabriel
Eg. txtPwd.addKeyPressHandler(new KeyPressHandler() { @Override public void onKeyPress(KeyPressEvent event) { if (event.getCharCode() == KeyCodes.KEY_ENTER) { btnLogin.click();

TextBox KeyPressEvent doesn't function in Firefox 4

2011-04-07 Thread Gabriel Volpe
Eg. txtPwd.addKeyPressHandler(new KeyPressHandler() { @Override public void onKeyPress(KeyPressEvent event) { if (event.getCharCode() == KeyCodes.KEY_ENTER) { btnLogin.click(); } } }); Regards. PD: I think in Firefox 3.x doesn't function. -- ** * Duke 'n' Tux* -- You received

Re: Alguien de Argentina?

2011-03-30 Thread Gabriel
Yo soy de Bs. As. cuál es el motivo de la pregunta? Saludos! On 29 mar, 21:24, Gal Dolber wrote: > el chiste? > > On Tue, Mar 29, 2011 at 9:16 PM, Juan Pablo Gardella < > > > > > > > > > > gardellajuanpa...@gmail.com> wrote: > > jajaj > > > 2011/3/29 Gal Dolber > > >> -- > >> Guit: Elegant, bea

Re: GWT 2.1.1. + Deploy in Tomcat

2011-02-03 Thread Gabriel
Thanks for your time Thomas, I guess I understand concept and I can deploy in Tomcat 6. Greetings! On Jan 28, 5:25 pm, Thomas Broyer wrote: > On Friday, January 28, 2011 6:59:30 PM UTC+1, Gabriel wrote: > > > Hi Florian, Thomas, thanks for reply. > > > I have this on WEB-

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 of

Re: GWT 2.1.1. + Deploy in Tomcat

2011-01-28 Thread Gabriel
Hi Florian, Thomas, thanks for reply. I have this on WEB-INF\lib: * db4o-7.12.156.14667-core-java5.jar * geronimo-jpa_3.0_spec-1.1.1.jar * gwt-servlet.jar * gwt-servlet-deps.jar * jsr107cache-1.1.jar I'm using GWT 2.1.1 without App Engine in Development Mode and run successfully. When I try to d

GWT 2.1.1. + Deploy in Tomcat

2011-01-25 Thread Gabriel Volpe
Hi people! Anybody knows how to deploy an GWT 2.1.1 App using Request Factory in Tomcat? Any documentation, link or answer that can help me? Thanks! -- *Volpe Gabriel* *** Duke 'n' Tux - Java & Linux 4 Life* -- You received this message because you are sub

enum for proxy in mvp framework

2010-11-09 Thread Gabriel
I need to expose an enum java type in the client side, is this possible to do without a proxy? I tried with: package com.foo.client.managed.activity; public class DeviceEditActivityWrapper implements Activity{ public interface View> extends ProxyEditView { void setTypePickerValues(Colle

Expose custom GWT widgets via JavaScript

2010-09-22 Thread gabriel
I'm looking for a good pattern or example of building custom GWT widgets and then exposing them via a JavaScript api. I've seen a lot of examples on how to wrap JavaScript libraries in GWT but not a lot on the reverse. I have seen the basic examples in the documentation on exposing simple functio

Do all classes in the a project need to be under a specific folder?

2010-05-27 Thread Karl San Gabriel
Hi Team, I am new to GWT and we are trying to port one of our smallest web application to GWT. We have the file Project.gwt.xml which was created via the webAppCreator with the following entry-point: Some of the other classes are located in com.project.hr.bean package. The following is the er

Re: GWT Hibernate Project Structure

2010-05-22 Thread Gabriel
Hi, Do you have a reason for splitting the application into two projects? If not, there is nothing preventing you from using a single project for both client and server. If you do need to have two projects, you can use two (server and client) or three (server, client and common) modules under one

Re: how to customize the Button class (with skins)

2010-05-21 Thread Gabriel
I suggest you take a look at this: http://code.google.com/p/cobogw/ One of the widgets is a pretty customizable button - see the demo. On May 21, 9:24 pm, outsource lucas wrote: > How can I customize a standard Button directly from my java code? > (I want to have round corners with images / custo

Re: Using JS to access GWT generated JS code

2010-05-20 Thread Gabriel Gutierrez
eck out these two > > sections:http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsJSNI... > > >http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsJSNI... > > > I believe the second link is what you need. > > > cheers > > > On May 19

Using JS to access GWT generated JS code

2010-05-19 Thread Gabriel Gutierrez
Hey guys, I know that GWT interfacts with native JS using JSNI, but my question is: can I call from native JS to GWT generated code? how? My idea is to write, in GWT, a class (MyClass) and then, in an HTML file import the .nocache.js file and use native JS do something like this MyClass ins

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 compileJS OBFUSCATED

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

The "-implicit" argument of javac for JDK 6

2010-02-19 Thread Gabriel Forro
Have a nice day, Gabriel -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegro

Re: GWT Incubator Status Update and Schedule

2010-01-12 Thread Gabriel Guerrero
not tested them Cheers Gabriel On Jan 12, 6:05 pm, John LaBanca wrote: > Incubator Users - > > The Google Web Toolkit Incubator project began as a proving grounds for new > widgets to be vetted before joining the ranks of the GWT trunk. We've seen > some success stories ove

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 wrote: > Hi all, > > Do you know is there any workaround solutions t

GWT 2.0 RC2

2009-11-30 Thread Gabriel Thiesen
Hello guys, I have the most weird problem in history (Dramatic han? ). Well, the thing is, My application just don't work in IE 6, 7 and 8 and the only lead i could really find was a "Can't execute from a freed script". No javascript errors show up, besides this one that i was able to find usng th

OOPHM and Server Side Page

2009-10-27 Thread Gabriel
un in hosted mode, unless I would run the entire application on the hosted mode server (which is a bad practice for real-world applications to my understanding, and may not work the same as the standard Tomcat). Can this be achieved? Thanks, Ga

Re: GWT + OpenID - experiences?

2009-06-23 Thread Gabriel Guerrero
that again opens the openid provider login page in a new window (so state of the app is not lost), the gwt app has a jsni method to reload the user this method is called by the new window when the login is successful Cheers Gabriel On Jun 23, 3:36 pm, Mark wrote: > >> why couldn't yo

history does not work propertly

2009-06-14 Thread Gabriel Gutierrez
Does anyone knows why history does not ork propertly on IE ? I have this on my .html and on my java code History.addValueChangeHandler(this); String initToken = History.getToken(); if (initToken.length() == 0) { History.newItem("index"); } History.fireCurrentHistoryState(); So in fir

Re: GWT 1.6 with Maven and build system questions/survey...

2009-04-13 Thread Gabriel Guerrero
moved because the antrun is very simple and had worked very well for me, by the way for those interested in using the maven structure for GWT 1.6.4 , you have to pass -war /src/main/webapp to the Compiler and HostedMode app to use the default maven structure Cheers Gabriel On Apr 9, 4:03 pm, Benju

Re: which tools you have used for development of GWT?

2009-03-05 Thread Gabriel
In addition to what everyone said, I recommend using Cypal Studio Eclipse plugin. It has a very neat feature for automatically synchronizing the *Async interfaces with the service interfaces. On Mar 4, 7:05 am, shiren1118 wrote: > which tools you have used for development of GWT? > I'm puzzled

Coding Best Practices - Performance and Architecture

2009-03-05 Thread Gabriel
he updated data. Should I make an RPC call to the server every time the user enters a screen that requires the data or should I make the calls for more specific data, for example as part of suggestions fetching in an auto-suggest box of list box? T

Problem with History.newItem()

2009-03-05 Thread Gabriel Gutierrez
Hi guys, im having problems using the History.newItem(String, boolean); when a RPC is made and is compleated i use History.newItem ("someToken", true) so i can change the view, this works fine on firefox but on IE (version... i dont know, but is the one that have the tabs) is not getting triggere

Transforming a FastTreItem Interrior node to Leaf

2009-01-27 Thread Gabriel Guerrero
is no method to insert at a position in the fastTreeItem so it will be appended as the last node which i dont want) Cheers Gabriel --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.

Re: onHistoryChange(String token) is not working.

2008-12-15 Thread Gabriel Gutierrez
di u register it? History.addHistoryListener(this); this = EntryPoint class Regards, On Dec 15, 10:49 pm, Rinku wrote: > On Dec 11, 6:43 pm, Rinku wrote: > > > Hi, > > I am using FileUpload Widget to upload a file. > > When I am upolading more than one  files  with FileUploadWidget and > > a

SlideShow with GWT

2008-12-15 Thread Gabriel Gutierrez
hi guys, i need to do an slide show inside my app. is there any pre- existing gadget or component that i can use instead of building from scratch?? thanks, --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web

Re: Problems migrating GWT 1.5 2030 to GWT 1.5 official release

2008-09-19 Thread Gabriel Thiesen
Thanks, Gabriel Thiesen On Sep 19, 3:02 pm, ZhangJianshe <[EMAIL PROTECTED]> wrote: > hello,guys, i encount the same problem,whould you like share your > solutions? > > but ,i need you help. > > On 8月31日, 下午10时03分, Gabriel Thiesen <[EMAIL PROTECTED]> wrote: > >

Google Chrome and GWT Apps Speed. Fred Sauer. HornetBlast

2008-09-02 Thread Gabriel Krupa
from Frankfurt, Gabriel. --~--~-~--~~~---~--~~ 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, sen

Re: Problems migrating GWT 1.5 2030 to GWT 1.5 official release

2008-08-31 Thread Gabriel Thiesen
Thank you adm.dfs, Was exactly this indeed, so thank you very much Gabriel Thiesen On Aug 30, 8:17 am, "adm.dfs" <[EMAIL PROTECTED]> wrote: > Hello Gabriel, > > Its because Yours RCP implementation is located in same package with > RCP interfaces. > GWT

Re: Problems migrating GWT 1.5 2030 to GWT 1.5 official release

2008-08-29 Thread Gabriel Thiesen
Any ideas? i am completely lost in here, anything would help alot |Thanks, Gabriel Thiesen On Aug 29, 12:14 pm, Gabriel Thiesen <[EMAIL PROTECTED]> wrote: > Hello guys, > >    I have been trying for 3 days make the oficial release of GWT work > here with no success. It keeps

Problems migrating GWT 1.5 2030 to GWT 1.5 official release

2008-08-29 Thread Gabriel Thiesen
rver side beans, and should not be anoying me with compilation GWT issues And the RemoteServiceServlet is a default library, should not be anoying me with this errors. ManageRoles.gwt,xml file What is going on? Please help me Tha

Re: GWT 1.5 demo - proxy issue

2008-08-25 Thread Gabriel Krupa
The firewall software in my compamy seems to modify the Left shift " << " operators. in the generated Java Script there ist following line: function Eob(a){if(a<=30){return 1< wrote: > I hav the same problem. I can openhttp://gwt-ext.com/demo-ux/and the > old > showcase2-apphttp://gwt-ext.com/sh