[gwt-contrib] Re: Fix for delegate paths when using sub-widgets as editors of the exact same object, i.e. using @P... (issue1650803)

2012-02-24 Thread t . broyer
On 2012/02/24 09:46:53, Dan White wrote: Will update when I've investigated further. http://gwt-code-reviews.appspot.com/1650803/diff/1/user/test/com/google/gwt/editor/client/impl/DelegateMapTest.java File user/test/com/google/gwt/editor/client/impl/DelegateMapTest.java (right):

[gwt-contrib] Re: Fix for delegate paths when using sub-widgets as editors of the exact same object, i.e. using @P... (issue1650803)

2012-02-24 Thread t . broyer
On 2012/02/24 12:02:56, Dan White wrote: I'll close off this review, no need to commit the change. I have terrible manners - thanks for your help! Are you maintaining the editors code now? Not officially, but having dug in this code for a while I'm indicated to review patches ;-)

[gwt-contrib] Re: Internet Explorer issue with CssResource

2012-02-24 Thread Patrick Tucker
Check your browser mode, IE 8 Standards in particular. Your problem is caused by the display style: display:table-cell; You can easily test this by creating a html file with the following: div style=white-space: nowrap; overflow: hidden; text- overflow:ellipsis; width: 30px;asdfasdfasd fads

[gwt-contrib] Is it possible to compile modules in parallel?

2012-02-24 Thread Boni
If I understand correctly Compiler processes each module inside a for loop. The permutations computed for this module is processed in parallel using ExternalPermutationWorker. This is great since now all my processors will work to complete the compilation quicker. This alone however is not

[gwt-contrib] Re: Internet Explorer issue with CssResource

2012-02-24 Thread Jens
Maybe having an additional span solves the issue as well: div style=display:table-cell; width: 30px; span style=white-space: nowrap; overflow: hidden; text-overflow:ellipsis;asdfasdfasd fads fads fa sdf asd fa sdf/span /div I haven't an IE at hand right now but I think it could work. Am