[gwt-contrib] Compiling gwt on Mac ?

2023-03-22 Thread stuckagain
Is it possible to compile GWT on a Mac ? Is it mandatory to use Java 8, that version is no longer available. I have Java 11 installed, but I get the following error: compile: [mkdir] Created dir: /Users/me/Projects/gwt/build/out/build_tools/doctool/bin [javac] Compiling 10 source

[gwt-contrib] NoSuchMethodException in HEAD-SNAPSHOT has been removed, breaking knightsoft gwt-bean-validators

2019-01-03 Thread stuckagain
Hi, I just noticed this morning that our project fails to build this morning due to a change in HEAD-SNAPSHOT. We are using knightsoft gwt-bean-validators and its source is apparently depending on the fact that GWT is emulating the NoSuchMethodException. I saw this commit where there is a

[gwt-contrib] 2.9 progress

2018-12-05 Thread stuckagain
Now that j2cl is open sourced I see a lot of enthousiasm for working with it, which is great. But how does that impact 2.9 release with Java 11 support ? I don’t see a lot moving here: https://github.com/gwtproject/gwt/milestone/19 We are going to release a product that is currently depending

[gwt-contrib] Re: Java 11 is there gwt 2.9 ?

2018-10-18 Thread stuckagain
Yes that would be an acceptable solution for the company I work with. A quarterly release sounds good. A snapshot is not acceptable because the 3rd party contents of our software would depend on when the build was done. -- You received this message because you are subscribed to the Google

[gwt-contrib] Java 11 is there gwt 2.9 ?

2018-10-18 Thread stuckagain
Just wondering that now that Java 11 is available will we see a 2.9 release soon ? Even if it is just to add support for the new java features without implementations for new API addidtions ? I am already working with SNAPSHOT releases, but I am not allowed software that is using snapshot

[gwt-contrib] Re: Java10 support

2018-07-12 Thread stuckagain
Thomas, would you mind pushing a new snapshot release of your maven plugin release to sonatype ? I see that you have migrated to a newer version of the surefire plugin on github, but this version is not yet available on sonatype. (latest update is 20170920) I can’t build the verson myself,

[gwt-contrib] CodeServer is using about 500 threads ?

2017-04-27 Thread stuckagain
Just wondering, why does the CodeServer allocate 500 threads on my computer ? Isn't that a bit over the top to host one application that will only server one user once in a while ? -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To

Re: [gwt-contrib] Re: Thoughts on DevMode

2017-01-16 Thread stuckagain
Thanks for the info Thomas. On Monday, January 16, 2017 at 10:01:08 AM UTC+1, Thomas Broyer wrote: > > > > On Monday, January 16, 2017 at 9:29:30 AM UTC+1, stuckagain wrote: >> >> Speaking of j2cl and GWT 3.0 it would be nice if somehow the development >> did

Re: [gwt-contrib] GWT Plugin v3.0 and tbroyer maven integration ?

2016-12-23 Thread stuckagain
utting in Application.gwt.xml in > src/main/java instead of src/main/resources? > > On Fri, 23 Dec 2016 at 06:48 stuckagain <david...@gmail.com > > wrote: > >> >> Living behind a corporate firewall is hell as I cannot get my hands on >> the GWT plugin (I have a support ca

[gwt-contrib] GWT Plugin v3.0 and tbroyer maven integration ?

2016-12-23 Thread stuckagain
Living behind a corporate firewall is hell as I cannot get my hands on the GWT plugin (I have a support case open for now 3+ months) unless I build it myself and produce a zip file of the eclipse plugin and somehow get it on my dev computer. I tried to build the 3.0-SNAPSHOT release on my

[gwt-contrib] SNAPSHOT of 21 Sept breaks my build (invalid namespace

2016-09-21 Thread stuckagain
It looks like some changes to JSInterop are breaking my build Compiling module com.swift.common.paging.PagingTest.JUnit Ignored 1 unit with compilation errors in first pass. Compile with -strict or with -logLevel set to TRACE or DEBUG to see all errors. Errors in

[gwt-contrib] Re: ScriptInjector seems to be broken (2.8-SNAPSHOT)

2016-09-06 Thread stuckagain
It was working fine before. Since it looks like JsInterop has changed recently (and it is still in beta) I will just update my code to either inject in the TOP_WINDOW or I try it with using window as namespace. On Monday, September 5, 2016 at 6:29:48 PM UTC+2, Jens wrote: > > Hm wondering how

[gwt-contrib] Re: ScriptInjector seems to be broken (2.8-SNAPSHOT)

2016-09-05 Thread stuckagain
er 5, 2016 at 1:40:38 PM UTC+2, stuckagain wrote: > It looks like the ScriptInjector is no longer working properly in the > snapshot. > > I had code like this: > > ScriptInjector.*fromString*(pBundle.d3JS().getText()).inject(); > > To load D3 using a TextResource. > &g

[gwt-contrib] ScriptInjector seems to be broken (2.8-SNAPSHOT)

2016-09-05 Thread stuckagain
It looks like the ScriptInjector is no longer working properly in the snapshot. I had code like this: ScriptInjector.*fromString*(pBundle.d3JS().getText()).inject(); To load D3 using a TextResource. Since today (just came back after 2 weeks of holidays) the D3 object is no longer available

[gwt-contrib] Experimental release of Elemental2

2016-08-08 Thread stuckagain
Some comments: - Is there a possibility that the API's don't overuse double in the future ? For example the XMLHttpRequest.status property is supposed to be an integer not a double. - The API's do not use set/get/is as was the case in the old Elemental. So how can I now detect that a property

Re: [gwt-contrib] Re: Experimental release of Elemental2

2016-08-08 Thread stuckagain
In case of EventHandlers it blocks me from using a lambda in addEventListener. The GWT compilers gives an error that the method is ambiguous. While eclipse or the javac does not seem to have a problem with it. -- You received this message because you are subscribed to the Google Groups "GWT

[gwt-contrib] GWT 2.8.0 SNAPSHOT compiler crash

2016-04-27 Thread stuckagain
Nobody as this problem ? -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit-contributors+unsubscr...@googlegroups.com. To view this

[gwt-contrib] GWT 2.8.0 SNAPSHOT compiler crash

2016-04-25 Thread stuckagain
I was trying to move from the GWT 2.8.0-beta1 release to the Snapshot release since the beta is becoming very old and I want to be able to use more Java 8 functional interfaces that are defined in the jdk 8 (and I hope are emulated in the SNAPSHOT). However, this fails miserably with some

Re: [gwt-contrib] Re: 2.8.0-beta1 SDM not always detecting changes properly

2016-01-05 Thread stuckagain
I tried to use it... the effect is even worse: changes are never seen. I must be missing something obvious ? On Monday, January 4, 2016 at 3:15:25 PM UTC+1, Jens wrote: > > > Not sure if that property still exists in GWT 2.8 beta as we use some GWT >> snapshot build thats in between 2.7 and

[gwt-contrib] 2.8.0-beta1 SDM not always detecting changes properly

2015-12-21 Thread stuckagain
I have been using 2.8.0-beta1 in combination with Thomas Broyer's maven plugin for a week now. When I run the codeserver and make changes a reload of the browser does not always include the last changes that I made. At the start it seems to work fine but then after a few code changes and

[gwt-contrib] Re: GWT 2.8.0-beta1 available for testing

2015-12-09 Thread stuckagain
Great news! I tried to recompile with Java8 and GWT 2.8 beta1 a project I am working on. But I see these 2 errors: guava-gwt 18.0 does not seem to compile: [INFO]Tracing compile failure path for type 'com.google.common.collect.GwtPlatform' [INFO] [ERROR] Errors in

[gwt-contrib] GWTCon 2015 keynote question

2015-11-13 Thread stuckagain
This points to the GWTCon keynote done by Julien Dramaix.

[gwt-contrib] Re: Help testing the GWT 2.8 release

2015-11-10 Thread stuckagain
Hi Daniel, I can help testing a bit on OSX Safari/Chrome/FireFox. If those tests are also possible disconnected from the internet I could also try on Win7/IE11/Chrome/FireFox. PS: How is Singular coming along ? I'm still waiting anxiously for a first release (even unstable) to play with it.

[gwt-contrib] SuperDevMode sometimes puts member fields in __proto__ why is that ?

2014-12-05 Thread stuckagain
I've been trying out GWT 2.7 and SuperDevMode in combination with the SDBG https://github.com/sdbg/sdbg eclipse plugin. In the Chrome debugger I noticed that some fields are sometimes available under 'this' but sometimes they are available only in 'this.__proto__'. It seems that if I have a

MessagesWithLookup

2014-12-04 Thread stuckagain
In a special case in my application I need the extra functionality of Messages but I need something like the behavior of ConstantsWithLookup. I understand that Messages do not provide a lookup functionality for performance reasons, however sometimes it would be useful to have something like

[gwt-contrib] GWT and OSGI

2014-10-13 Thread stuckagain
My timing is probably bad again since you are in the last sprint to delivering GWT 2.7. (Looking forward to it!) Any chance that this bug will ever get resolved in some way or another ? http://code.google.com/p/google-web-toolkit/issues/detail?id=1888 It is about the possibility to use GWT

Using multiple UiRenderer types in one CellRenderer

2014-09-30 Thread stuckagain
I'm trying to use multiple UiRenderer types in one CellRenderer. One annoying feature is that you are supposed to use the same base file name for the ui.xml file as the class in which the UiRenderer is defined. In my case I actually want to use multiple UiRenderer interfaces and UiBinder

Re: Using @UiChild with Elements not widgets, is this even possible?

2014-09-03 Thread stuckagain
Hi, I would love seeing some improvements to UiBinder that it would allow String of SafeHtml for children. I don't want my templates to be full of HTMLPanel when just a String or SafeHtml would do. Specifying these children using attributes is not really a great idea since I don't want to

Re: [gwt-contrib] Re: Bad link in GWT Documentation

2014-07-08 Thread stuckagain
No, Don't bother... I am starting to believe that it is caused by some reverse proxy that does some URL rewriting. I can not reproduce when working from home. Enterprise security features have a big impact on productivity :-( Thanks for the support. On Tuesday, July 8, 2014 3:15:57 AM UTC+2,

Re: [gwt-contrib] Re: Bad link in GWT Documentation

2014-07-07 Thread stuckagain
(thus skipping 1) then it works fine. So it looks like the urls are badly generated. David On Thursday, June 12, 2014 9:14:34 AM UTC+2, stuckagain wrote: It was in the main navigation panel. But as of this morning (GMT+1) it works fine. So I guess it had something to do with caching

[gwt-contrib] Bad link in GWT Documentation

2014-06-11 Thread stuckagain
The link to the documentation on Editors is broken. It points to: http://www.gwtproject.org/doc/latest/doc/latest/DevGuideUiEditors.html iso http://www.gwtproject.org/doc/latest/DevGuideUiEditors.html -- You received this message because you are subscribed to the Google Groups GWT

Re: [gwt-contrib] Emma or JaCoCo support needs some attention

2014-05-22 Thread stuckagain
alternative but I'm not sure when that will be ready. On Fri, Apr 11, 2014 at 6:44 AM, David david...@gmail.comjavascript: wrote: No feedback from the GWT developers ? On Mon, Apr 7, 2014 at 3:09 PM, stuckagain david...@gmail.comjavascript: wrote: What is the state for supporting

Re: How to display an ampersand using UiBinder?

2014-05-21 Thread stuckagain
I have to revive this thread. I just stumbled on the same problem in my UiBinder file. This really looks like a bug in GWT UiBinder. I am using a different widget than Label (my own custom Button class that extends HasHTML and HasSafeHtml). I include the entity line: !DOCTYPE ui:UiBinder

Re: How to display an ampersand using UiBinder?

2014-05-21 Thread stuckagain
, stuckagain wrote: I have to revive this thread. I just stumbled on the same problem in my UiBinder file. This really looks like a bug in GWT UiBinder. I am using a different widget than Label (my own custom Button class that extends HasHTML and HasSafeHtml). I include the entity line

UiBinder and writing custom parsers

2014-04-28 Thread stuckagain
I need to write a custom widget that is to be used in UiBinder to easily layout a form of properly aligned fields (in multiple columns). I tried to avoid using a custom widget by defining some resusable stylenames, but it would be much nicer if I could just abstract away whether you need a

Using GWTTestCase to do integration testing on GWT-RPC calls

2014-04-01 Thread stuckagain
Hi, I'm trying to create an integration test that checks if a GWT-RPC service is working with our integration test servers. My initial thought was to just use a GWTTestCase and point the GWT-RPC ServiceDefTarget to the real server. It did not work: 32 [JS executor for

Re: GWT 2.6.0 now available

2014-02-07 Thread stuckagain
Great news. I have a question on the included thirtparty products. I see that there is a guava version in there. Is this version impacted by the JDK 1.7.0 update 51 issue reported here: https://code.google.com/p/guava-libraries/issues/detail?id=1635 Maybe you are not using the features that

SingleSelectionModel with KeyProvider does not update selected object when data is refreshed

2013-12-06 Thread stuckagain
Hi, I noticed an issue in the SingleSelectionModel when used in combination with a KeyProvider and updating the cell table with new data. The idea is that I want to retain selection, and that seems to work. What does not work is when I use the getSelectedObject method I get an older version

Re: IncompatibleRemoteServiceException after new deployment

2013-11-13 Thread stuckagain
Magnus, What is also often causing this is that you don't have caching setup correctly. One thing people tend to overlook is (besides the *.cache.* and *.nocache.* files) is that the host HTML page should disable caching. David On Wednesday, November 13, 2013 1:01:05 PM UTC+1, Jens wrote:

GWT DevMode latest version (1.25 ?) crashes FireFox 24 ESR

2013-11-04 Thread stuckagain
Hi, I am trying to run devmode on FireFox 24 ESR release, Plugin version says 1.25. When FireFox starts it crashes, when I delete the GWT DevMode plugin FireFox works again. I can not upgrade to a newer version of FireFox since this is the version that our customers will use and so I want

Re: GWT RPC and DevMode

2013-09-27 Thread stuckagain
you a very good idea what is wrong! David On Friday, September 27, 2013 11:48:25 AM UTC+2, stuckagain wrote: Hi, I am failing to get DevMode working with a huge project. The main issue is that as soon as I do a first RPC call I get a IncompatibleRemoveServiceException. I cannot use

getting access to min-width of an element

2013-09-23 Thread stuckagain
Hi, I am trying to get access to the min-width style property on some widget to be able to properly implement a layout. When I use: widget.getElement().getStyle().getProperty(minWidth) I always get as a result. The min-width style is set like this: .myclass { min-width: 200px; } div

TabLayoutPanel that dynamically resizes to selected tab content

2013-09-06 Thread stuckagain
Hi, I'm in the middle of moving from QuirksMode to Standards mode. And I am having an issue to emulate the old TabPanel with TabLayoutPanel. What I need is a TabLayoutPanel that resizes depending on the tab contents. The original TabPanel had that behaviour, but the TabLayoutPanel needs a

Re: HeaderPanel not setting height of the Content widget

2013-09-06 Thread stuckagain
Patrick, No, I don't know the height of the header, and I certainly don't want to set it in pixel sizes in the code either. (I even have the header change height depending on what the user is doing in there). The question was about the content widget not being resized in a HeaderPanel, not the

Re: TabLayoutPanel that dynamically resizes to selected tab content

2013-09-06 Thread stuckagain
as a tab bar, and a separate DeckPanel? (note: the TabLayoutPanel's tab bar is simply a FlowPanel, and each tab is a SimplePanel with a CommonResources.getInlineBlockStyle() style and a ClickHandler) On Friday, September 6, 2013 1:10:16 PM UTC+2, stuckagain wrote: Hi, I'm in the middle

HeaderPanel not setting height of the Content widget

2013-08-19 Thread stuckagain
Hi, I am trying to use the HeaderPanel to set a Header/Footer and an resizing ContentPanel (which contains a CellTable). The problem is that unlike other LayoutPanel classes the vertical size is not enforced on the content widget, its width is set to 100% but the height is not set. I don't

[gwt-contrib] Client side sorting in a celltable with ListDataProvider ListHandler

2013-07-29 Thread stuckagain
Hi, I tried to discuss this in the GWT google groups, but I did not get any feedback there. I figured since this was a strange design choice in GWT that I should discuss it here: I just lost 2 hours on getting client side sorting to work correctly in my DataGrid backed by a ListDataProvider.

DataGrid and using Event.setCapture to implement column resizing.

2013-07-18 Thread stuckagain
Hi, I'm currently implementing column resizing on DataGrid but I stumbled upon 2 problems. Maybe somebody from the GWT team can help me out to solve this ? It looks to me that those are bugs/features of the current DatatGrid/CellTable(s) ... but it would be great if I can get a complete

DataGrid sorting and using setList in ListDataProvider

2013-07-17 Thread stuckagain
Hi, I just lost 2 hours on getting sorting to work correctly in my DataGrid backed by a ListDataProvider. I was calling setList( rows ) on the DataProvider to update the table and that works... but sorting was not working (I could not even see the sort indicator on the table header cells).

Re: GWT website moved to gwtproject.org

2013-07-09 Thread stuckagain
On Wed, Jul 3, 2013 at 10:59 AM, stuckagain david...@gmail.comjavascript: wrote: Great work! Wouldn't it be nice if the online docs would have been created as a GWT application as well ? Right now navigation in the documentation is a bit '90s style where I always lose track

Re: GWT website moved to gwtproject.org

2013-07-03 Thread stuckagain
Great work! Wouldn't it be nice if the online docs would have been created as a GWT application as well ? Right now navigation in the documentation is a bit '90s style where I always lose track of the index since the whole page is reloaded when I click on a subject. It could be a very nice

[gwt-contrib] Issue 8083, needs some input from GWT team

2013-06-11 Thread stuckagain
Hi, I am working on a fix for this issue: https://code.google.com/p/google-web-toolkit/issues/detail?id=8083 I am avoiding converting from string to the internal format of BigInteger because it has a big performance impact on IE8 when sending it over RPC. It performs much better in IE9 and

Issue 8166 created RPC issue in Chrome

2013-05-29 Thread stuckagain
Hi, I stumbled upon a strange RPC serialisation error with GWT 2.5.1: https://code.google.com/p/google-web-toolkit/issues/detail?id=8166 For some reason an int is serialized as a float in some very specific case in my application. The result is an IncompatibleRemoteService exception being

Re: Issue 8166 created RPC issue in Chrome

2013-05-29 Thread stuckagain
. David On Wednesday, May 29, 2013 4:43:53 PM UTC+2, stuckagain wrote: Hi, I stumbled upon a strange RPC serialisation error with GWT 2.5.1: https://code.google.com/p/google-web-toolkit/issues/detail?id=8166 For some reason an int is serialized as a float in some very specific case in my

Re: [gwt-contrib] Re: Doing migrations one step at a time

2013-05-27 Thread stuckagain
Just my 5 cents, Decisions on browser support seems to be mostly driven by Google statistics ... but many GWT apps are running outside of the internet. The apps that I am maintaining and developing run in a banking environment, where the browser usage statistics are a lot different - IE8 is

GWT Window Managers ?

2013-05-07 Thread stuckagain
Hi, I need a window manager for a GWT application that was using GXT. It seems like all development stopped somewhere in 2010 since both GWT Window Manager and GWT Mosaic stopped being updated since then (and a lot of other GWT libraries as well). It does not seem like a big job to support

Re: How to centre fixed size panel inside another layout panel or screen

2013-04-18 Thread stuckagain
Hi Jens, Great, it works exactly as I want! Such a simple approach as well, it should be part of GWT though. David On Thursday, February 2, 2012 1:23:57 AM UTC+1, espinosa_cz wrote: Hi guys, I manage to put my context panel to the middle of the browser page in Vaadin. Seem my

Re: How to centre fixed size panel inside another layout panel or screen

2013-04-17 Thread stuckagain
Hi, Maybe you should file a bug report, a center layout or something would be great! Or indeed support for Alignment.MIDDLE. I'm in the progress of updating and old code base to standards compliant mode and centering widget on the window is used all over the place. Before I could just set

Re: GWT issues while waiting for gwtproject ?

2013-04-16 Thread stuckagain
of these via a CellWidget. On Monday, April 15, 2013 5:37:04 PM UTC+2, stuckagain wrote: Hi, The HTML that is being put in the HTMLPanel is generated and inserted as one big HTML string. The HTML can either be generated in Javascript or on the server. If CellWidgets are an alternative then I am

Re: Java 7

2013-04-16 Thread stuckagain
Java 6 is still used a lot in enterprise developments, I am actually more looking forward to Java 8 support due to project lambda which could have a very nice impact on readability of all these async operations we tend to chain together in GWT client applications. On Tuesday, April 16, 2013

GWT issues while waiting for gwtproject ?

2013-04-15 Thread stuckagain
Hi, Are we allowed to add bugs in the bugtracking in the middle of the migration to gwtproject ? I recently added a few and I hope that sometimes they will be sorted out. My last one was a performance bottleneck on HTMLPanel with many widgets being added (due to the very inefficient

Re: GWT issues while waiting for gwtproject ?

2013-04-15 Thread stuckagain
in CellTable and CellTree. David On Monday, April 15, 2013 4:36:23 PM UTC+2, Ümit Seren wrote: Any reason for not using CellWidgets instead of HTMLPanels ? On Monday, April 15, 2013 4:18:33 PM UTC+2, stuckagain wrote: Hi, Are we allowed to add bugs in the bugtracking in the middle

Re: GWT issues while waiting for gwtproject ?

2013-04-15 Thread stuckagain
Jens, That would be an understatement :-) I am still positive that the bug triage disaster gets fixed because that is fundamental to the success of opensource. And I saw in the gwt-steering news group that they are going for some interesting roadmap, so I live in hope. I would love to

Re: GWT RPC future ?

2013-03-04 Thread stuckagain
like to keep everything as is without having to swap out everything, as the Android and AppEngine Servlets are working great. Thanks! E On Tuesday, February 26, 2013 4:55:56 AM UTC-5, stuckagain wrote: People, Just to post some feedback on my problem, I actually found a working

Re: IE Anchor Issue

2013-03-04 Thread stuckagain
Hi, All I do is cancel the default handling of the ClickEvent I'm not using the anchor widget but the element directly but I assume it should work the same. anchor.addClickHandler() { new ClickHandler() { public void onClick( ClickEvent event ) { event.preventDefault(); } }); On

Re: GWT RPC future ?

2013-02-26 Thread stuckagain
(and even IE) are becoming much faster I might not even need to further improve it. David On Wednesday, February 13, 2013 5:31:10 PM UTC+1, stuckagain wrote: Thomas, I just read the article on how they improved parsing time in flickr ... really simplistic and a big surprise that the split trick

Re: GWT RPC future ?

2013-02-13 Thread stuckagain
, February 6, 2013 5:17:33 PM UTC+1, Thomas Broyer wrote: On Wednesday, February 6, 2013 4:37:35 PM UTC+1, stuckagain wrote: Hi, Not sure where to ask this question, but I was wondering if the GWT devs every plan to fix the inefficient GWT-RPC ? The problem happens mostly on IE (all

Re: GWT RPC future ?

2013-02-07 Thread stuckagain
that we have almost no support for JSON-REST kind of APIs since that is what most people seem to be using. David On Wednesday, February 6, 2013 5:17:33 PM UTC+1, Thomas Broyer wrote: On Wednesday, February 6, 2013 4:37:35 PM UTC+1, stuckagain wrote: Hi, Not sure where to ask this question

GWT RPC future ?

2013-02-06 Thread stuckagain
Hi, Not sure where to ask this question, but I was wondering if the GWT devs every plan to fix the inefficient GWT-RPC ? The problem happens mostly on IE (all versions), although I assume other browsers might benefit as well since a lot of cpu cycles are wasted on things that should be

Re: GWT MVP Architecture

2012-09-14 Thread stuckagain
Why does the view need to be a singleton ? Anyway, when you are done with the presenter, then you need to tell it so. In that case it can unregister any installed handlers. David On Thursday, September 13, 2012 8:09:30 PM UTC+2, Aryan wrote: Hi all, lets look at the code: public

Re: Large memory leak in IE8 when GWT runs on a new Window

2012-09-13 Thread stuckagain
Hey, I seem to be seing similar issues when putting a GWT application in an IFrame and then removing the IFrame. It looks like the entire GWT application leaks. I saw your bug report in the bug tracker of GWT. I added my comment there with a suggestion on how they could maybe fix this issue

Leaks with IFrames and JSONP

2012-04-03 Thread stuckagain
Hi, I have been spending now 5 days trying to track down memory leaks in my big GWT application. I noticed that every time I call a JSONP service that I am leaking (size depends on the data received from that service). I also noticed that when I put GWT in an IFrame and remove that IFrame

Re: GWT 2.4 breaks JDK 5 compile support

2011-12-15 Thread stuckagain
The documentation getting started still says JDK 1.5 ... at the start of the page. The release note does not say that Java 6 is REQUIRED. http://code.google.com/webtoolkit/gettingstarted.html A lot of servers are still using Java 5. David -- You received this message because you are

Re: Developers, please don't ignore reported GWT issues.

2011-10-05 Thread stuckagain
I have been frustrated with this as well and voiced my concern before. But all they keep on doing is adding features that most of us don't need. GWT is great, but there is a lot of old stuff in there that is half baked and nobody in the GWT team seems to be concerned with actually fixing bugs.

javac problem in annotation when moving from GWT 2.3 to GWT 2.4.

2011-10-04 Thread stuckagain
Hi, After I switched to GWT 2.3 I suddenly have a custom annotation that fails to compile with the Oracle javac I'm totally puzzled on how this can happen but maybe the GWT team have some insight on what might me happening in GWT that could cause this ? could this be caused by a

[gwt-contrib] javac problem in annotation when moving from GWT 2.3 to GWT 2.4.

2011-10-04 Thread stuckagain
Hi, After I switched to GWT 2.3 I suddenly have a custom annotation that fails to compile with the Oracle javac I'm totally puzzled on how this can happen but maybe the GWT team have some insight on what might me happening in GWT that could cause this ? could this be caused by a

FormPanel and protection against injection attacks ?

2011-08-19 Thread stuckagain
I need to use a regular HTTP POST in a specific case in my application and I am having a problem in chosing the right approach to guard me against injection attacks. Due to browser limitations I am forced to send back text/html, which ofcourse means that the HTML I generate in my servlet must

Re: Aw: Xpath in GWT

2011-08-19 Thread stuckagain
I am interested in this! We need better support for XML and XPath in GWT (and it needs to work fast). The standard GWT wrapper on top of the browser XML support is very much incomplete. But I see that totoe does not allow modifying the document. Is it planned to implement this in the forseable

Re: GWT plugin compile can not ignore a source directory

2011-06-10 Thread stuckagain
Hi, Not an ideal solution (since I have lots of support classes which do not follow some naming convention), but it will do. Thanks, David -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Why is the XMLParser not returning a org.w3c.dom.Document ?

2011-06-10 Thread stuckagain
Hello, XML support in GWT is quite substandard. Why did the GWT devs not base the implementation on the org.w3c.dom interfaces ? Just like the JRE emulation classes they could have done that and make it possible to share code between client and server when using Documents. Namespace

Re: Awesome testing with IsWidget interface :) - Embedded View pattern

2011-06-09 Thread stuckagain
Thanks for the info! Yes indeed, it would be nice to have widgets use interfaces instead of classes ... -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

InternalCompilerException: Already seen an implementing JSO subtype

2011-06-06 Thread stuckagain
Hi, Is this error something I have to fix in my code or is it really a bug in the compiler ? I have an Interface that needs to be implemented JavaScriptObject subclasses ... is this not allowed for JSOs ? David [ERROR] Unexpected com.google.gwt.dev.jjs.InternalCompilerException: Already

GWT plugin compile can not ignore a source directory

2011-06-06 Thread stuckagain
Is there a possibility in the GWT plugin to configure a source folder NOT to be included when doing a GWT compile ? I have a separate source folder in eclipse where I put my unit tests. These unit tests are put in the same package so that I can gain access to package private classes. These

How can I unit test some basic JavaScript overlay objects with the need for a Servlet and GWTTestCase ?

2011-03-31 Thread stuckagain
I have a few JavaScriptObject overlay types that I need to check for correct behaviour. They basically represent data that I receive from a JSONP request. I tried adding a servlet for testing that would serve the JSONP following the JUnit testing docs of GWT but I noticed that it does not

[gwt-contrib] There seems to be some issue in a Features.xml of the GWT 2.2 eclipse plugin.

2011-03-15 Thread stuckagain
I posted my message in the GWT group first, but no responses. https://groups.google.com/forum/#!topic/google-web-toolkit/2gWDTKw1tcA The problem is because of a parsing error in this Feature.xml file, I can no longer disable/enable other features in my eclipse environment. It is really

GWT Eclipse Plugins gives errors in eclipse error log. As a consequence I can not disable certain other plugins (not from google).

2011-03-14 Thread stuckagain
Hi, My log in eclipse is full with errors about the GWT Eclipse Plugin: One Import statement is incorrect: Both feature and plug-in ID are either null or specified. Feature location: file:/C:/Development/eclipse/features/com.google.gdt.eclipse.suite.e36.feature_2.2.0.v201102111811/feature.xml

[gwt-contrib] A fix for issue 5998

2011-03-03 Thread stuckagain
I uploaded a patch to rietveld for issue 5998 but until now I did not see it appear in the GWT-Contributors newsgroup ... Is that normal ? What did I do wrong ? Anyway, here is a copy of the message in question. If anybody wants to review this and hopefully commit it then I would be a happy

[gwt-contrib] protected Image( Element element ) can not be used because of state not being initialized

2011-02-08 Thread stuckagain
Hi, I'm trying to build a message editor that uses Schema's and XML to drive the UI. The message editor can use all the Schema validation facets automatically, so if there is a Schema the editor can render it fast and even enforce compliance to the schema. The editor takes XML as input and

Re: Announcing GPE/GWT 2.2 RC1

2011-02-07 Thread stuckagain
What features in Java 6 would be so fundamental to GWT that 1.5 becomes deprecated ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this

[gwt-contrib] Re: Announcing GPE/GWT 2.2 RC1

2011-02-07 Thread stuckagain
What features in Java 6 would be so fundamental to GWT that 1.5 becomes deprecated ? -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Download GWT DevMode browser plugins directly

2011-01-21 Thread stuckagain
Hi, Is there a URL that I can go to to download the GWT DevMode plugins directly (so no shell exe that reconnects to google) ? My dev machine is not connected to the Internet so I need to be able to install these plugins offline. David -- You received this message because you are

[gwt-contrib] New Google Groups apparent with GWT ?

2010-12-09 Thread stuckagain
Hi, I'm writing this message using the new Groups... and what do I see... it is now written in GWT! Looking sweet! Although I see a bit a lag when typing (in IE8) David -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: CellTable as a replacement for incubator ?

2010-11-03 Thread stuckagain
Hi John, On Nov 2, 6:50 pm, John LaBanca jlaba...@google.com wrote: CellTable isn't a complete replacement of PagingScrollTable, but we put a lot of work into the API to make it more clear and extensible.  We'd like to create a full featured enterprise CellTable, but we also have a lot of

CellTable as a replacement for incubator ?

2010-11-02 Thread stuckagain
Hi, I have waited a long time to finally get the Incubator table out of my dependencies ... and now with GWT 2.1 release I realize that my waiting has been a total waste of time! The CellTable is a very small subset of the incubator table... I would rather call it a CellGrid. in IE8 I see 3-4

[gwt-contrib] DeRPC works with draftCompile, but not when optimized

2010-10-06 Thread stuckagain
I have a rather large codebase where we decided to tryout DeRPC for a request that was too complex for the standard RPC. Everything looked good until I removed the draftCompile switch. The RpcServlet serializes the response but the client fails with a Incompatible Remote Service. Is this a

CssResources and inheritance

2010-09-15 Thread stuckagain
Hi, I wanted to post this to GWT contribs, but lets try this newsgroup first. I have create my own button widget (based on a A href='#' tag) that allows me to specify the styles through a CssResource called ButtonCss. I needed many different type of buttons in one application so I thought, well

[gwt-contrib] PopupPanel rolldown animation is only accesable with incubator!?

2010-09-13 Thread stuckagain
Hi, While factoring out a dependency on GWT incubator I stumbled upon the way the animation type is selected in the PopupPanel. This is what the javadoc says: /** * Sets the animation used to animate this popup. Used by gwt- incubator to * allow DropDownPanel to override the default popup

[gwt-contrib] GWT Compiler or widget.gwt.xml file optimisation for 2.1 ?

2010-09-10 Thread stuckagain
Hi, I managed to finally factor our the incubator widgets from my medium sized application and now that I have no dependencies left I saw the compile time decrease with 66%. Which is an amazing. We were only using 2 widgets yet this library had such a huge impact. Are there any plans to improve

GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread stuckagain
Hi, Since I get no response from the GWT dev-team on reported bugs I am beginning to wonder about the future of GWT. It looks like stability of the existing features is not very high on the list. I've heard excuses in all the previous release that you guys were going to sort out long-standing

Re: GWT eat your own dogfood ? Future of GWT ?

2010-08-26 Thread stuckagain
The @external part is what I don't like. This makes it impossible to obfuscate and thus optimize the generated code. The CssResource stuff also has the added benefit that you can not make a mistake in stylenames since it is checked at compile time. For the rest of your email, I just want to say

  1   2   >