GWT URL parameters not setting and getting when has domain

2017-05-25 Thread Julio Heitor Nobrega
Hi guys, I have an issue that you could help me. I am developing a e-commerce GWT website and when i access the paltform using the IP address i can get and set url parameters(product id and profile id) with no problem. But when i access the platform using the DNS domain (eious.com) no paramete

Re: CustomButton implementation leads to incorrect handling of PushButton by screen readers

2016-12-14 Thread Julio Feferman
Created issue https://github.com/gwtproject/gwt/issues/9471 which references the patch. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr

Re: CustomButton implementation leads to incorrect handling of PushButton by screen readers

2016-12-13 Thread Julio Feferman
Thanks for pointing out. I'll make the change specific for PushButton and follow your indications. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool

Re: CustomButton implementation leads to incorrect handling of PushButton by screen readers

2016-12-13 Thread Julio Feferman
On Tuesday, December 13, 2016 at 7:50:43 AM UTC-2, Thomas Broyer wrote: > > > > On Tuesday, December 13, 2016 at 8:14:50 AM UTC+1, Julio Feferman wrote: >> >> I am instrumenting an application for best possible support for assistive >> technologies (ATs) such as sc

CustomButton implementation leads to incorrect handling of PushButton by screen readers

2016-12-12 Thread Julio Feferman
I am instrumenting an application for best possible support for assistive technologies (ATs) such as screen readers, using GWT's ARIA implementation. I see that the CustomButton widget setEnabled() method sets the aria-pressed attribute on the button element if it is enabled. This is fine for a

Opening a File Chooser (using FileUpload Widget) from a DialogBox

2016-04-12 Thread Julio Heitor Nobrega
Dear friends, i am having some problemas using the *FileUpload *widget and the *DialogBox*. If i try to open the file chooser to choose a image from the file system from FileUpload like this: new *ClickHandler*() { @Override pub

GWT WYSIWYG Editor

2016-04-11 Thread Julio Heitor Nobrega
Hi Guys, does anyone know if there is some WYSIWYG Editor for GWT? I have found some old projects that implement the basic stuff but it does not work anymore in a GWT 2.7 project. If someone has any RichTextToolBar to share here, please let me know! Regards! -- You received this m

Uploading Local Image Content

2016-03-18 Thread Julio Heitor Nobrega
Dear friends, i am trying to upload a file system image's content to my GWT site and i stumbled across this code: *public* * final native void readAsDataURL(MyClass that, FileUpload input) /*-{ var files = inp...@com.google.gwt.user.client.ui.FileUpload::getElement()().files

Re: Forbidden words Service for GWT

2016-02-25 Thread Julio Heitor Nobrega
-words-banned-by-google/ Regards! Em quinta-feira, 25 de fevereiro de 2016 09:56:38 UTC-3, Julio Heitor Nobrega escreveu: > > > Hey guys, > > i am developing a e-commerce site using GWT and i would like to ask if > there is some paid/free webservice solution that verifie

Forbidden words Service for GWT

2016-02-25 Thread Julio Heitor Nobrega
Hey guys, i am developing a e-commerce site using GWT and i would like to ask if there is some paid/free webservice solution that verifies the existence of forbidden words (violence, sexual, weapon and/or hate related) give a String. Best regards! -- You received this message

Re: Is there any GWT library to be used in client side that does the same thing as Scalr (scale and reduze image file sizes)?

2016-01-27 Thread Julio Heitor Nobrega
19:15 PM UTC+3, claudio sergio > Goncalves wrote: >> >> Hi julio >> >> i use this routine to redimensione my images >> >> public static BufferedImage redimensionarImagem(BufferedImage img, int >> maltura, int mlargura) throws Exception { >> >

Re: Is there any GWT library to be used in client side that does the same thing as Scalr (scale and reduze image file sizes)?

2016-01-25 Thread Julio Heitor Nobrega
Is there a way to see what format the file has? If it isn't an image i'll have to warn the user. 2016-01-25 14:58 GMT-02:00 Julio Heitor Nobrega : > Hi Alain, > > nice code! I am going to do this but in a java version code. I just didn't > know i could get the image

Re: Is there any GWT library to be used in client side that does the same thing as Scalr (scale and reduze image file sizes)?

2016-01-25 Thread Julio Heitor Nobrega
ht; > var ctx = canvas.getContext("2d"); > ctx.drawImage(img1, 0, 0); > var dataURL = canvas.toDataURL("image/png");alert("from getbase64 > function"+dataURL ); > return dataURL;} > > Then send the base64 to the server and corvert it to b

Re: Is there any GWT library to be used in client side that does the same thing as Scalr (scale and reduze image file sizes)?

2016-01-25 Thread Julio Heitor Nobrega
. 2016-01-25 13:39 GMT-02:00 Alain Ekambi : > Would it be a better designer to save the image on disc and just save the > link to the image to the DB ? > > On 25 January 2016 at 15:59, Julio Heitor Nobrega > wrote: > >> As a matter of fact, i am beginning to think th

Re: Is there any GWT library to be used in client side that does the same thing as Scalr (scale and reduze image file sizes)?

2016-01-25 Thread Julio Heitor Nobrega
age to the dimensions you pass to it. None of it i will have with GWT Canvas. The only drawback i would get using Scalr is that i will consume more bandwidth DigitalOcean gives me monthly because i will have to send the whole image to the server. 2016-01-25 12:52 GMT-02:00 Julio Heitor Nobrega : > Th

Re: Is there any GWT library to be used in client side that does the same thing as Scalr (scale and reduze image file sizes)?

2016-01-25 Thread Julio Heitor Nobrega
tly in element > or send it to server. > > On Monday, January 25, 2016 at 3:19:03 PM UTC+1, Julio Heitor Nobrega > wrote: >> >> I have just found an example (http://c.gwt-examples.com/home/ui/canvas). >> >> The only problem is to convert ImageData to an byte arra

Re: Is there any GWT library to be used in client side that does the same thing as Scalr (scale and reduze image file sizes)?

2016-01-25 Thread Julio Heitor Nobrega
I have just found an example (http://c.gwt-examples.com/home/ui/canvas). The only problem is to convert ImageData to an byte array :) Regards! 2016-01-25 12:08 GMT-02:00 Julio Heitor Nobrega : > Does anyone have some examples regarding the Canvas class? > > I've seen the java d

Re: Is there any GWT library to be used in client side that does the same thing as Scalr (scale and reduze image file sizes)?

2016-01-25 Thread Julio Heitor Nobrega
-01-14 16:36 GMT-02:00 Kirill Prazdnikov : > Canvas is an DOM Element. > It can render Image Elements to itself in any resolution. > However it may produce not nice results. > > It depends on what you need. > > On Thursday, January 14, 2016 at 9:17:36 PM UTC+3, Julio Heitor Nob

Re: Is there any GWT library to be used in client side that does the same thing as Scalr (scale and reduze image file sizes)?

2016-01-14 Thread Julio Heitor Nobrega
Hi guys, thanks everyone for the answers! Greg, is Canvas a GWT framework or its a class that belong to GWT itself? Do you have any example of use? Regards Em quinta-feira, 14 de janeiro de 2016 11:25:29 UTC-2, Julio Heitor Nobrega escreveu: > > Hi guys, > > i am trying to u

Is there any GWT library to be used in client side that does the same thing as Scalr (scale and reduze image file sizes)?

2016-01-14 Thread Julio Heitor Nobrega
Hi guys, i am trying to upload images with 2mb size but i don't want to send the whole original image to the server. What i would like to do is reduce the image dimensions from, for example, *1000x1000* to *50x50* and reduce the file size from *2mb* to *~25kb* as well and at the end send the *

Re: IntegerBox not restricting input to integers in GWT 2.4.0

2015-08-26 Thread Julio Feferman
sed. Best, - Julio -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send

GWT Compression API

2015-04-13 Thread Julio Heitor Nobrega
Heu guys, i need to implement a GWT client that compress a image and sends to the server. Afterwards, the server sends back the compressed image and then the client descompress it and disply in the screen. Is there a client-based compression API to be used with GWT? Best Regards! -- You rec

Re: setUser and setPassword in RequestBuilder

2012-12-24 Thread Julio Faerman
I also would like to know that, neither the officil docs or javadocs makes this clear... On Thursday, February 1, 2007 9:13:46 AM UTC-2, thodu wrote: > > Hi, > > I would like to know the use of the setUser and setPassword methods in > RequestBuilder. How exactly are they meant to be used? > > Reg

Re: Plug-ins GWT - Eclipse

2012-08-24 Thread Julio P. Leiser
donwload already installed the file. But by using the url eclipse is not working.* NoSuchKeyThe specified key does not exist. * Atenciosamente, Julio P. Leiser --- *House Company Informática Ltda* Arquiteto de Software Celular : (55) (11) 9390-3404

Plug-ins GWT - Eclipse

2012-08-24 Thread Julio P. Leiser
Hi, does anyone know why the site gwt plug-ins is not in the air. Two days ago I'm trying to install the plugin for google JUNO ( http://dl.google.com/eclipse/plugin/4.2) and the service can not download. Can anyone help me. Atenciosamente, Julio P. L

Re: NullPointerException on stockwatcher tutorial

2012-05-01 Thread Julio
Hi, works for me. i insert the DIV tag into the html. Thanks. -- 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, send email to goo

Re: Wrapping element as Widget and adding click event

2011-06-08 Thread julio
Email On Jun 8, 4:59 pm, Juan Pablo Gardella wrote: > CellTable don't work for you? See this question > <http://stackoverflow.com/questions/3262160/gwt-2-1-celltable-column-h...>in > stackoverflow. > &g

Wrapping element as Widget and adding click event

2011-06-08 Thread julio
I need adding a click event to th (in a table with UIBinder context). Is it possible? Have I to create a TH-Widget with a wrap method? If it's so, how? Thanks Julio -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To pos

Re: JsonP response code

2011-05-19 Thread julio
Hi, is there any workaround for this? or some way to retrieve in advance the response code? Thanks Julio On May 18, 3:57 pm, julio wrote: > Hi, > > I have json-p requests in my code similar to this: > > JsonpRequestBuilder jsonp = new Json

JsonP response code

2011-05-18 Thread julio
onSuccess(T t) { //do something } }); some GET-requests return 200, others 302 and so on, and I should be able to return a different "answer" respect to this value. How can I know what's the response value returned? Thanks Julio -- You received this message

Re: json post not working

2011-05-13 Thread julio
Sorry forget it, it works properly, was a XSS problem Julio On May 13, 11:57 am, julio wrote: > Hi > > I have a json POST like this: > > { "first": 10 , "second" : 50 } > > with "content-type:application/json" > > With a

json post not working

2011-05-13 Thread julio
sponse response) {} public void onError(Request request, Throwable exception) {} }); } catch (RequestException e) { Window.alert(e.toString()); } look like the server even hasn't get the request. How can I fix it? Th

Explorer 8 and InnerHTML issue

2011-05-05 Thread julio
t e = Document.get().getElementById("someDivId"); returns e == null in Firefox and Chrome that doesn't happen any idea for a workaround? Thanks Julio -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this

Re: KeyPressEvent doesn't capture Enter

2011-04-27 Thread julio
event.getNativeEvent().getKeyCode() works thanks and keydown event as suggested by Thomas too Julio On Apr 27, 11:59 am, Jens wrote: > Maybe you can try using event.getNativeEvent().getKeyCode() instead of > getCharCode(). -- You received this message because you are subscribed to the

Re: KeyPressEvent doesn't capture Enter

2011-04-27 Thread julio
I'm using for test Firefox 4.0.1 at the moment, btw I just tried with Chrome 10 and it works. So it looks like a bug in GWT. In case any workaround? Thanks Julio On Apr 27, 11:29 am, riyaz ahmed wrote: > I had the same issue, > Did you check on other browsers, because in some

KeyPressEvent doesn't capture Enter

2011-04-27 Thread julio
eCharCode(), I got 0. Is it a bug or maybe I'm missing something? Thanks Julio -- 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

Ajax loader & locked screen

2011-04-20 Thread julio
Hi, is there a way/example to get a locked screen with a loader in the middle of the screen with GWT (2.2) while is fetching data? Thanks, Julio -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email

Re: Proxy & POST

2011-03-17 Thread julio
Window.alert(e.getLocalizedMessage()); } returns always status-code = 0... any help? Thanks, Julio On Mar 17, 11:07 am, julio wrote: > Hi, > > I'm using GWT 2.1.1 and in my app there is a RequestBuilder/POST to a > different url respect to the client (basically

Proxy & POST

2011-03-17 Thread julio
gle-web-toolkit/issues/detail?id=3131#c46 without any luck and as I'm stuck on the same problem since days(!) I'm asking you is someone has got a working configuration/solution for this problem. Thanks, Julio -- You received this message because you are subscribed to the Google Gr

Spring Security 3.0 authentication problem

2011-03-15 Thread julio
yserverapp/j_spring_security_check?j_username=julio&j_password=mypass the server response is OK (200) but when GWT client tries the same, the status code returned is 0. This is the code I'm using at the moment: final StringBuilder content = new StringBuilder(); content.append("j

Re: Adding widget to HTMLPanel error

2011-03-07 Thread julio
sorry (hyper shame) forget it :) (bloody autocompletition-editor '@UiField private HTMLPanel...', private problem:)) solved Julio On Mar 7, 5:15 pm, julio wrote: > Hi, > > in that case, with: > > > > @UiField private HTMLPanel rootDialog; > > rootDial

Re: Adding widget to HTMLPanel error

2011-03-07 Thread julio
c MyDialog() { uiBinder.createAndBindUi(this); } @UiFactory DialogBox construct() { return this; } Any idea about the origin of the error above? Thanks, Julio On Mar 7, 4:39 pm, Thomas Broyer wrote: > You have an HTMLPanel, so why aren't you using its add(Widget, > Stri

Adding widget to HTMLPanel error

2011-03-07 Thread julio
but even knowing that it doesn't help. Any idea? Thanks, Julio -- 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, se

Re: FocusWidget fired repeats the event

2011-02-10 Thread julio
Hi, click-handler is added only one time (verified debugging too). Julio On Feb 10, 1:52 pm, Lazo Apostolovski wrote: > How many times you add new ClickHandler? > > I think that you add more then one different handlers, who listening for > click event. TextBox.addClickHandler(new

FocusWidget fired repeats the event

2011-02-10 Thread julio
em is when the widget is fired the event is triggered many times instead of only one. Is there a way to "stop" this accumulation of events? I tested this only on Firefox 3.6.13 Thanks, Julio -- You received this message because you are subscribed to the Google Groups "Google We

Re: Link ClickHandler doesn't fire

2011-01-18 Thread julio
otPanel.get().add(link); >     } > >     class ListLink extends HTML >     { >         public ListLink(String text) >         { >             setHTML("" + text + ""); >         } >     } > >     @Override >     public void onClick(ClickEvent event

Re: Link ClickHandler doesn't fire

2011-01-17 Thread julio
Hi Thomas, yes you are right, in that case my widget is "out of sync" with the DOM. do you mean to replace this: getElement().appendChild(a.getElement()); with something else? If it's so how? I can't find any API for that case (not even this.addWidget(...)) Thanks, Julio

Link ClickHandler doesn't fire

2011-01-17 Thread julio
#x27;s leaded by '#'). How can I fix the problem? Thanks, Julio -- 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

Re: JsArrayMixed module?

2011-01-13 Thread julio
Hi Thomas, yes, but i noticed it happened with eclipse on. Turning it off and launching ant from command line again has worked fine. I didn't upgrade the GWT plugins as I didn't get any notification (usually it is on the bottom left), after that it has started to work fine yet thanks

JsArrayMixed module?

2011-01-12 Thread julio
what's the module required. Thanks, Julio -- 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-too

Re: REST + Spring Security 3.0

2011-01-10 Thread julio
ring which is exactly the best/easy solution to handle authentication + authorization for the single user session (sorry for the rhyme:)) Thanks, Julio On Jan 7, 6:15 pm, aliman wrote: > Hi, > > I'm no expert in this area, so take this with a pinch of salt > (interested to hear what

Re: REST + Spring Security 3.0

2011-01-06 Thread julio
izedMessage()); >         } > > The nice thing about that is, that you'll recieve a cookie from spring > security so you don't have to specify username and password in all > your requests. The only coupling you have with this approach is the > server URI (in this case

REST + Spring Security 3.0

2011-01-06 Thread julio
Hi, I need to use Spring Security 3 in my application which is composed by Spring 3 for the server side and GWT 2.1 for the client side. Client side and server side are totally ""decoupled"", I mean they don't belong to the same project in the eclipse workspace (server side is managed by maven an

Re: Casting JavaScriptObject with GWT 2.1

2010-12-11 Thread julio
Sorry if I sound aggresive but this thing is taking the whole day and more :) yes, i'm debugging and i hope to get something soon Thanks, Julio On 11 Dic, 17:39, skrat wrote: > Julio, I think your last response was a bit aggresive. Watch it. As of > your problem with overlay type

Re: Casting JavaScriptObject with GWT 2.1

2010-12-11 Thread julio
#x27;t work anymore. They return empty values. any idea? Thanks, Julio On 11 Dic, 07:46, Gaurav Vaish wrote: > Hi Julio, > > I think you need to first understand JavaScript before jumping on to > using GWT. > > Once you are done, and you understand why JavaScriptObject instances

Re: Casting JavaScriptObject with GWT 2.1

2010-12-10 Thread julio
weird, it looks like i can pass through classes primitive values as int, char etc but not complex objects extending JavaScriptObject, cos I cannot cast them anymore (BTW no errors got, just empty values) Julio On Dec 10, 10:43 am, julio wrote: > before this: > > BeanData bd = data.cre

Re: Casting JavaScriptObject with GWT 2.1

2010-12-10 Thread julio
before this: BeanData bd = data.createObject().cast(); I tried with a normal: BeanData bd = (BeanData) data; and: BeanData bd = data.cast(); but they don't work. BTW debugged them I saw that the data passed has the same refId of the "original", so it looks like is just not cast at all. On D

Casting JavaScriptObject with GWT 2.1

2010-12-10 Thread julio
quot;JavaScriptObject". How can I cast it back? Thanks, Julio -- 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

Re: SOP Problem with GWT 2.0.4

2010-12-08 Thread julio
it but with a specific API that GWT doesn't use). if I paste and copy the remote cgi's url in the browser bar the data get displayed on it (Firefox 3.5.12, IE6 and Chrome 8). In this case something is still possible? Thanks, Julio -- You received this message because you

Re: SOP Problem with GWT 2.0.4

2010-12-07 Thread julio
I moved from GWT 2.0.4 to 2.1 (last release) but there is still the same problem could be it a GWT bug? Julio -- 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...@googlegrou

SOP Problem with GWT 2.0.4

2010-12-07 Thread julio
as I supposed it to be a SOP problem. But unfortunately it doesn't work me, either using a deployed app on tomcat or with "run as-> web application" in eclipse. Have you any idea? Thanks, Julio -- You received this message because you are subscribed to the Google Groups &qu

How to change the panel in Activity.start()

2010-11-11 Thread Julio Faerman
d would be kind enough to share) 3) Is there another way or recommended practice? Thanks, Julio -- 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 unsubsc

GWT + Web SQL

2010-07-28 Thread Julio Faerman
Hello, I am building a GWT app that uses Web SQL Local Storage ( http://dev.w3.org/html5/webdatabase/ ). The problem is that the Web SQL API uses callback functions as arguments. Is it possible to pass "Java" callbacks to JSNI? Thanks, Julio -- You received this message becau

Re: HTML5 Offline GWT APP

2010-07-28 Thread Julio Faerman
The filter didn't work for me, i don't know exactly why, i am guessing that static files (such as gwt artifacts) under GAE dev have different access... On Jul 28, 4:56 am, Shawn Brown wrote: > Hi, > > > The problem is finding out which files are cached and how... i don't > > know if there is any

Re: HTML5 Offline GWT APP

2010-07-27 Thread Julio Faerman
The problem is finding out which files are cached and how... i don't know if there is any tool that show you that. On Jul 27, 10:51 am, Shawn Brown wrote: > > It seems to be working, but debugging is not easy. > > Why is that? > > Can't you use Firebug, the Error console in Safari or the Dev cons

Re: HTML5 Offline GWT APP

2010-07-27 Thread Julio Faerman
n { resp.setContentType("text/cache-manifest"); RequestDispatcher disp = req.getRequestDispatcher("/gt/ gt.manifest"); disp.forward(req, resp); } } It seems to be working, but debugging is not easy. On Jul 27, 6:37 am, Shawn Brown wro

Re: HTML5 Offline GWT APP

2010-07-26 Thread Julio Faerman
ions/gwt-linkers-webworkers > You could also pull it out of the Speed Tracer source. > > -- > Arthur Kalmenson > > On Fri, Jul 23, 2010 at 8:40 AM, Julio Faerman wrote: > > Hi, > > > I am trying to build a offline gwt app using HTML5 cache manifest and > >

HTML5 Offline GWT APP

2010-07-23 Thread Julio Faerman
Hi, I am trying to build a offline gwt app using HTML5 cache manifest and local storage, but to do that, i need to build the manifest file listing all the GWT generated files, right? Can i do this during the compile process or is it better to do this in a shell script? Thanks, Julio -- You

Re: GWT.runAsync and Command Pattern

2010-05-30 Thread Julio Faerman
commands, i wish they weren't mutually exclusive. On May 30, 11:17 am, federico wrote: > hi julio, > > the issue you mentioned exists, > anyway your ActionService interface should be: > > > T execute(V req) throws > ActionFailedException; > > on the other hands i

GWT.runAsync and Command Pattern

2010-05-30 Thread Julio Faerman
ionService extends RemoteService { T execute(V req) throws ActionFailedException; } the problem is that "module1.SomeRequest" and "module2.OtherRequest" gets included in the initial fragment. Do you see a way around this? Thanks, Julio Faerman -- You receive

Re: How to build event hierarchy?

2010-05-26 Thread Julio Faerman
Thanks Jeff! I wonder if it would better to implement a HandlerManager that understands event type hierarchy or add a "type" parameter to the event and do the if/switch in the event handler. On May 26, 11:46 am, Jeff Chimene wrote: > Hi Julio: > > Events are rarely hierarchic

How to build event hierarchy?

2010-05-26 Thread Julio Faerman
Given that event listeners must listen to a single GwtEvent.Type using the HandlerManager, what is the best way to implement such system? Should i add the same listener for all types or the HandlerEvent can handle inheritance? Thanks, Julio -- You received this message because you are subscribed

Re: Grid component spacing question.

2010-05-09 Thread Julio Faerman
Works perfectly. Thank you kozura. On May 8, 11:17 pm, kozura wrote: > Style it with display: block;.  Images by default are inline which > leaves space for text footers.  Yeah that makes no sense.. > > On May 8, 3:41 pm, Julio Faerman wrote: > > > > > I have

Grid component spacing question.

2010-05-08 Thread Julio Faerman
pot.com I wonder if this is caused by some default style... help anyone? Thanks in advance, Julio -- 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 u

Question about GWTEvent.Type

2010-05-06 Thread Julio Faerman
Hello, Is it possible to define event "subtypes" ? I would like to define a "GenericEvent" and a "SpecificEvent" so that when a "SpecificEvent" is fired in the HandlerManager, both generic and specific event handlers are notified. Thanks in avance for your support. -- You received this message

MVP + Places

2010-04-28 Thread Julio Faerman
tory-management-with-places.html, but it is also unclear. If anyone have been through similar issues and could share some solutions, it would be of tremendous help. Or, if someone wants to build a "hierarchical mvp" places library, i would be glad to help the endeavour. Best regards, J

Fiscal printer on client

2009-10-14 Thread Julio Pereira
Hi, I am developing a gwt application and i need to use a fiscal printer in a client. Does everyone know how to access the paralel port from client. I have found some solution using javascript approach. Thanks. Julio --~--~-~--~~~---~--~~ You received this

Using Rack applications inside Hosted mode

2009-07-19 Thread Julio Capote
Wrote a blog article detailing how one can use any Rack application inside of GWT's Hosted mode servlet container. This allows you to develop your application without needing to deploy to your backend all the time. http://juliocapote.com/post/145035194/using-rack-applications-inside-gwt-hosted-mo

Jira/Confluence Gwt Portlet

2008-12-04 Thread Julio Pereira
Does anyone has some ideas or references (like default structure that i have to follow)? thanks -- Julio --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group