Rendering/painting in IE8/IE9 is slow when compared to FireFox(21.0) and Chrome(Version 27.0.1453.110 m) using GWT.

2013-06-17 Thread ajaybela . ab
Rendering/painting in IE8/IE9 is slow when compared to FireFox(21.0) and Chrome(Version 27.0.1453.110 m) using GWT. During GWT Table rendering, for each Table cell, we use the below API: 1. com.google.gwt.user.client.ui.Grid.getCellFormatter().setStyleName 2.

Re: Rendering/painting in IE8/IE9 is slow when compared to FireFox(21.0) and Chrome(Version 27.0.1453.110 m) using GWT.

2013-06-17 Thread Jens
Grid is implemented using a HTML table. HTML tables are slow in rendering if you do not set table-layout:fixed; as a CSS property. You could also try filling the Grid off screen, e.g. when its not yet attached to the DOM so the browser has to do less layout/rendering. If the above did not help

Re: RequestFactory Issue 6115

2013-06-17 Thread Nermin
Am Sonntag, 16. Juni 2013 23:52:08 UTC+2 schrieb Thomas Broyer: On Friday, June 14, 2013 5:55:03 PM UTC+2, Nermin wrote: Hello Thomas, Open Session In View is the right approach to go for. Thank you for this advice! I have implemented it and it works fine now. However, I have one

Setting TreeItem userObject with uiBinder?

2013-06-17 Thread Kulnor
Is there any way to set a TreeItem user object in the UI Binder XML? Something like g:TreeItem text='Foo' userObject=FooKeyValue/ thanks *P -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

Re: RequestFactory Issue 6115

2013-06-17 Thread Thomas Broyer
On Monday, June 17, 2013 10:47:56 AM UTC+2, Nermin wrote: Am Sonntag, 16. Juni 2013 23:52:08 UTC+2 schrieb Thomas Broyer: I'll see if I can improve the documentation. Feel free to propose patches yourself though: http://www.gwtproject.org/makinggwtbetter.html#webpage Thank you for

Re: Setting TreeItem userObject with uiBinder?

2013-06-17 Thread Philippe Lhoste
On 17/06/2013 10:55, Kulnor wrote: Is there any way to set a TreeItem user object in the UI Binder XML? Something like g:TreeItemtext='Foo'userObject=FooKeyValue/ Have you tried it? (I haven't!) I see TreeItem has a setUserObject(Object userObj) method, so maybe it can work. -- Philippe

Re: Fixing a column in DataGrid

2013-06-17 Thread Raphael André Bauer
On Fri, Jun 14, 2013 at 11:42 AM, Jens jens.nehlme...@gmail.com wrote: Well, add a scroll handler to the right ScrollPanel and set the current scroll position on the left ScrollPanel. Hi Jens, thanks for that :) It worked the way you described it. With one tiny caveat. DataGrids don't export

How to add keydown and keyup listner to DrawingArea

2013-06-17 Thread Joel Malchiondo
I cant figure out how to add a keyboardlistner to a drawing area. i amd creating a simple game and would like to be able to respond to the user pressing buttons? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this

FW: Muhammad

2013-06-17 Thread Muhammad
hello! http://www.eliane-mery-sculptrice.com/ozqjpwgb/hlc/ejmgt/lzdh.html Muhammad -- 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

Re: Setting TreeItem userObject with uiBinder?

2013-06-17 Thread Pascal Heus
Tried that one but fails with Cannot parse value: FooKeyValue as type java.lang.Object: g:TreeItem ... *P On 6/17/13 12:38 PM, Philippe Lhoste wrote: On 17/06/2013 10:55, Kulnor wrote: Is there any way to set a TreeItem user object in the UI Binder XML? Something like

Re: RequestFactory, entity Id not populated when it reaches the server?

2013-06-17 Thread Ümit Seren
For debugging: Check the RF payload with Chrome Developer Tools and put a breakpoint in the siteId() method of your backend DTO (it should be called after the object is created). On Monday, June 17, 2013 3:59:02 AM UTC+2, GWTter wrote: Hi all, I have the same setup as in question

Re: RequestFactory, entity Id not populated when it reaches the server?

2013-06-17 Thread GWTter
Hi Ümit, I was actually checking the payload via the DefaultRequestTransport, I could see the user proxy object but I could not see the id anywhere in the payload. I had also put a println in the setID method in the DTO but it was never called which is what I thought was strange since the

Re: AWS (CDN) GWT file deployment and 'Blocked a frame with origin' issue

2013-06-17 Thread Joseph Lust
Thomas, Sorry I didn't catch you at the GWTogether in SF last month. I owe you a number of beers. :) *That did the trick*. I'll bang out an article for GWTProject.org on AWS (and similar) CDN deployments. BTW, I shamefully plead ignorance on the *xsiframe* linker. I'd only used the linkers

Re: RequestFactory, entity Id not populated when it reaches the server?

2013-06-17 Thread GWTter
Hi, So I went back using the dev tools, inspected the payload, and confirmed what I had before: the ID is not set at all in the user object payload. Just to make sure I wasn't crazy or missing something I created just a User object and tried to save it. I checked the payload in that request

JUnitShell: Why is the log level overriden to WARN?

2013-06-17 Thread Maik Riechert
Hi, when developing JUnit runstyles I want to do info/trace logging, e.g.: shell.getTopLogger().log(TreeLogger.TRACE, Letting PhantomJS fetch + url); I have to change all those logging outputs to at least WARN to see anything. This is caused by the following code in JUnitShell I guess:

Clientside IO with GWT

2013-06-17 Thread Alain
If you ever wanted to generate files(PDF Excel on the Client) in your GWT app this might be useful. http://emitrom.com/blog/client-io Cheers, Alain -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and

CellList + ListDataProvider - Refresh failing in one special scenario - Please help

2013-06-17 Thread Bharat Parikh
Problem: CellList doesn't refresh in a special scenario GWT Version: 2.5.0 Client(s): IE version 9, Google Chrome Version 27.0.x Description: The below code snippet works fine in all but one special scenario: ListNotification listOfNotification = notificationListDataProvider.getList();

[gwt-contrib] Change in gwt[master]: Optimize initializing fields at the top scope.

2013-06-17 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: Optimize initializing fields at the top scope. .. Patch Set 1: (1 comment) File

[gwt-contrib] Change in gwt[master]: FileUpload: extending FocusWidget instead of Widget so as it...

2013-06-17 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: FileUpload: extending FocusWidget instead of Widget so as it exposes many features which already are in the file-input element: click(), focus(), mouseevents, keyevents, etc.

[gwt-contrib] Change in gwt[master]: Ensure clinits get called for JSO instance methods.

2013-06-17 Thread Colin Alworth
Colin Alworth has posted comments on this change. Change subject: Ensure clinits get called for JSO instance methods. .. Patch Set 2: (1 comment) File

[gwt-contrib] Change in gwt[master]: adds type tightening (and tests) for casts inside of RunAsyn...

2013-06-17 Thread John Stalcup
John Stalcup has uploaded a new change for review. https://gwt-review.googlesource.com/3460 Change subject: adds type tightening (and tests) for casts inside of RunAsync onSuccessCalls, resulting in smaller leftover fragments

[gwt-contrib] Change in gwt[master]: adds type tightening (and tests) for casts inside of RunAsyn...

2013-06-17 Thread John Stalcup
John Stalcup has posted comments on this change. Change subject: adds type tightening (and tests) for casts inside of RunAsync onSuccessCalls, resulting in smaller leftover fragments .. Patch Set 1: addresses part of

[gwt-contrib] Change in gwt[master]: adds type tightening (and tests) for casts inside of RunAsyn...

2013-06-17 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: adds type tightening (and tests) for casts inside of RunAsync onSuccessCalls, resulting in smaller leftover fragments .. Patch Set 1: Code-Review+2 (1

[gwt-contrib] Change in gwt[master]: Add interfaces for widgets.

2013-06-17 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Add interfaces for widgets. .. Patch Set 8: I thought IsXXX just meant we really wanted to name this interface just 'XXX', but that name was already taken

[gwt-contrib] Change in gwt[master]: Fix binary vs. internal variable names, remove unused Name c...

2013-06-17 Thread Stephen Haberman
Stephen Haberman has uploaded a new change for review. https://gwt-review.googlesource.com/3470 Change subject: Fix binary vs. internal variable names, remove unused Name code. .. Fix binary vs. internal variable names,

[gwt-contrib] Change in gwt[master]: Fix binary vs. internal variable names, remove unused Name c...

2013-06-17 Thread Stephen Haberman
Stephen Haberman has posted comments on this change. Change subject: Fix binary vs. internal variable names, remove unused Name code. .. Patch Set 1: There are no semantic changes here, just updating variable names to

[gwt-contrib] Change in gwt[master]: Optimize initializing fields at the top scope.

2013-06-17 Thread Stephen Haberman
Stephen Haberman has posted comments on this change. Change subject: Optimize initializing fields at the top scope. .. Patch Set 1: (1 comment) File