Re: Using an App-wide RPC serive or multiple services?

2010-08-30 Thread Paul Stockley
I originally went with the centralized approach but abandoned it because of the code splitting issue. Now I have multiple services each with a facade that provides standardized error handling and in process cancelling capabilities. However, having to create a facade for each service is a little bit

Re: Using GWT for a large UI project

2010-08-30 Thread Fred Sauer
Thanks, Marius On Mon, Aug 30, 2010 at 12:32 PM, marius.andreiana < marius.andrei...@gmail.com> wrote: > Hello group, > > A few weeks ago I started a shared document which analyses using GWT > for a large UI project, which has also reviewed by this group (thanks > for your feedback!). After learn

RPC SerializationException when going from GWT 1.7 to GWT 2.0.4

2010-08-30 Thread Ken Wielechowski
In going from GWT 1.7 to GWT 2.0.4, I am getting the following exception: dispatching incoming RPC call com.google.gwt.user.client.rpc.SerializationException: java.lang.reflect.InvocationTargetException at com.google.gwt.user.server.rpc.impl.ServerSerializationStreamWriter.serializeWithCustomSeria

Re: How to make Cross Site GWT work in servlet (doOptions)

2010-08-30 Thread prasad
On Aug 19, 11:31 am, jmich wrote: > Hi, > > I've been trying to get gwt to work cross site for some time now, but > I'm stuck, so hope someone can help me out. > > This is what I did so far: >  - added the xs linker to my gwt.xml >  - made servlet for my service which overrides doOptions >  - GW

Calling methods from GWT script in existing HTML

2010-08-30 Thread myapplicationquestions
Hi All, I have a huge HTML (existing project) and i am trying to incorporte some GWT components. I have created a simple method called navigateToPage which is written as static native String navigateToPage() /*-{ // ...implemented with JavaScript $wnd.alert("yeah yeah yeah"); }-*/; from

Re: Calling methods from GWT script in existing HTML

2010-08-30 Thread Gal Dolber
try this: static native String exportMethods() /*-{ $wnd.navigateToPage = function() { // ...implemented with JavaScript $wnd.alert("yeah yeah yeah"); }; }-*/; 2010/8/30 myapplicationquestions > Hi All, > > I have a huge HTML (existing project) and i am trying to incorporte > some GWT co

Re: Use ScrollPanel inside the HorizontalPanel

2010-08-30 Thread aditya sanas
At very first step set the size of horizontal panel as hrzPanel.setSize("350px","500px"); then set the size for scrollpanel in percentage or you can set it same as above. this will work for sure. also if you want scrollbars bydefault then set the method for scrPanel.setAlwaysShowScrollBars(true); -

Re: I need help custom querying blobs. Can anybody get JDO BlobInfo query to to work?

2010-08-30 Thread branflake2267
Here is what I came up with so far. This works, but not sure if it is the best way yet. I can now return the blobinfo entities. http://code.google.com/p/gwt-examples/source/browse/trunk/DemoUpload/src/org/gonevertical/upload/server/BlobInfoJdo.java - see the source public class BlobInfoJdo { pr

trigger when dom ready and images loaded

2010-08-30 Thread asianCoolz
any java method that i can call inside gwt when 'dom is ready' and 'all images loaded' ? at this instant of time, i want to call jsni to call external javascript -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send

Re: Use ScrollPanel inside the HorizontalPanel

2010-08-30 Thread udayanga ranasinghe
Hi, Thanks Aditya It works fine. On Tue, Aug 31, 2010 at 9:59 AM, aditya sanas <007aditya.b...@gmail.com>wrote: > At very first step set the size of horizontal panel as > hrzPanel.setSize("350px","500px"); > then set the size for scrollpanel in percentage or you can set it same as > above. > t

Re: how to align labels within a FlowPanel or a LayoutPanel

2010-08-30 Thread Magnus
Addon: I have tried a lot of things with LayoutPanel and FlowPanel, and also a lot of alignment methods with CSS (e. g. display:table-cell;vertical- align:middle;), but I feel that everything is overridden by GWT. Every div has style "position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0

Re: Browser related issue

2010-08-30 Thread sathya ayyanar
On Mon, Aug 30, 2010 at 11:10 AM, aditya sanas <007aditya.b...@gmail.com>wrote: > which version of IE are you using...? > the problem you are facing here is with the styling of your page not the > GWT issue > so you have to include IE enabled css to counter this problem. > -- > Aditya > > > On Mon

Re: Using GWT for a large UI project

2010-08-30 Thread Ulon
Thanks Marius, your document has helped me a lot. On Aug 30, 9:34 pm, Fred Sauer wrote: > Thanks, Marius > > On Mon, Aug 30, 2010 at 12:32 PM, marius.andreiana < > > > > marius.andrei...@gmail.com> wrote: > > Hello group, > > > A few weeks ago I started a shared document which analyses using GWT

<    1   2