Re: how large of your GWT compiled code? My one is 850K

2009-11-16 Thread luisfpg
Our app is still 60-70% complete and already has 2.1MiB of obfuscated code. Pretty code is 14+MiB. However we've developed several components and widgets, and we have a lot of RemoteServices wich several (and sometimes complex) model classes, which are transmitted over the wire. We will still

Re: Change cursor image on mouse over

2009-10-30 Thread luisfpg
cursor:hand is IE only. On CSS, you can use both: .myLabel { cursor: pointer; cursor: hand; } On Oct 30, 5:48 am, Chave lunarjc...@gmail.com wrote: You can use too: this.getElement().getStyle().setProperty(cursor, hand); On 29 oct, 15:50, ian12312 ian.l...@gmail.com wrote: I have

Missing quick fix in the eclipse plugin for RemoteService with super interfaces

2009-08-11 Thread luisfpg
Using plugin version 1.7.0 and Eclipse Galileo. When a RemoteService interface defines a method, the corresponding Async interface is marked as error and there is a quick fix which generates the method in the Async. Good. However, when the method is defined in a super interface of the

Re: save as dialog

2009-02-12 Thread luisfpg
Your server should send a request by adding the header Content- Disposition: attachment; filename=aaa.csv. If you set the browser's URL using Location.assign(path), your page will keep being displayed (because it's an attachment) and there won't be a new popup on the client browser. On Feb 12,

Re: RichTextArea problem when applying format under IE

2009-01-23 Thread luisfpg
Found a solution at http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/9612fb1bbcfcec3e/34ad68fb2a7dacac?lnk=gstq=richtextarea+focus#34ad68fb2a7dacac Works like a charm! - Luis On 22 jan, 11:13, Luis Fernando Planella Gonzalez lfpg@gmail.com wrote: Hi. I'm using

Re: How to render a list(ul li) by gwt widget ?

2009-01-16 Thread luisfpg
Create a class like this: public class ULPanel extends ComplexPanel { private UListElement list; public BulletPanel() { list = Document.get().createULElement(); setElement(list); } @Override public void add(Widget child) { Element li =

Friendly undeclared exceptions

2008-10-01 Thread luisfpg
Hi. Basically any method in my remote servlets may throw some common exceptions, like PermissionDeniedException, UserDisconnectedException and so on, but I don't want to declare them in every single method, in every single service. Since I use a custom servlet, I tried to hack the serialization