Re: ScriptInjector async /defer

2013-09-16 Thread Oliver Krylow
Thank you for the clarification! I wasn't aware of the different handling of "script-inserted" scripts and I must admit I misunderstood the async /defer attributes. I was hoping to get on-demand parsing out of it; control over the point in time the browser starts parsing a previously downloaded sc

Re: Patch installation in GWT

2013-09-16 Thread Jens
GWT creates one monolithic file per browser (+ one file per split point living in a folder having the browser permutation name). If you change anything in a file all the permutation names change and you have redeploy everything. The only way to patch a single module is if this single module is

Re: ScriptInjector async /defer

2013-09-16 Thread Thomas Broyer
On Monday, September 16, 2013 9:39:41 AM UTC+2, Oliver Krylow wrote: > > Thank you for the clarification! > > I wasn't aware of the different handling of "script-inserted" scripts and > I must admit I misunderstood the async /defer attributes. I was hoping to > get on-demand parsing out of it;

Style problems with Firefox+LayoutPanel

2013-09-16 Thread vincent vigon
ListBox has a weird behavior with fireFox (23.0.1), not with Chrome and Safari. Here is my code : public void onModuleLoad(){ ListBox list= new ListBox(false); RootLayoutPanel.get().add(list); RootLayoutPanel.get().setWidgetLeftWidth(list,0,Unit.PCT,50,Unit.PCT); for (int i=0;i<100;i++){

Re: GWT Code Splitting : RPC issue

2013-09-16 Thread Jens
Don't think so. RemoteService is just a marker interface so that GWT can find your services during compilation and generate their implementation. They should end up in the split point where you call GWT.create() the first time. Maybe some serializer will be in the left over fragment because the

Usage of gwt-comet on gwt RequestFactory?

2013-09-16 Thread Jamel Hamas
1- I have already used the following frameworks (Event based client-server) on GWT projects, and works fine with RPC call architecture. - GWT-Comet - GwtEventService After searching, i

Re: GWT Code Splitting : RPC issue

2013-09-16 Thread dilantha silva
Hi Jens, Since BootstrapDataService and ModuleADataService both going to be subclasses of RemoteService ,is there a possibility that ModuleADataService will get serialize initially and endup with the same situation ? On Fri, Sep 13, 2013 at 4:50 PM, dilantha silva wrote: > Hi, > > Thanks a lot

Storing uploaded file in gwt (server side)

2013-09-16 Thread Pradeep Kumar
Hi All, I am new to GWT, I am facing some issue with file creation. I am uploading a file from client side and want to store that file in server side and parse it and create tables in database for the data present in the file. When I try to create a file at server side there is

Problems with resizable display

2013-09-16 Thread Blake McBride
Greetings, I am having a problem with what I would think would be a common goal. I am trying to create a browser screen that automatically resizes and/or repositions widgets on a browser screen. My first attempt was to create a browser screen that has four buttons, one on each corner of the scre

Re: Problems with resizable display

2013-09-16 Thread Jens
You have to change the default alignment (which is top and left) by using setCellVerticalAlignment and setCellHorizontalAlignment. Alternatively you could also just use HTMLPanel or FlowPanel and use CSS along with absolute positioning for the buttons. Using CSS it would look similar to http://

Expanding the reach of GWT by improving the ease of creation and ease of use of GWT-based JS libraries

2013-09-16 Thread Litmus
Am I the only one that finds it strange that there aren't more people in the GWT community interested in creating JS libraries using GWT? It may seem counterintuitive, I don't know, but I really think one vector for expanding GWT use is by creating more building blocks that can be used by the g