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 Me

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 interf

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 e

Re: How to display an ampersand using UiBinder?

2014-05-21 Thread stuckagain
It turns out that my custom widget was the root of the problem. It implements HasHTML but not HasSafeHtml (I thought I had it implemented). It is strange that the » was properly showing, but not & or & that threw me off a bit. David On Wednesday, May 21, 2014 9:45:25 AM UTC+2, st

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: http://dl.google.com/gwt/

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 DIV/

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 com.gargoylesoftware.ht

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 cau

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 of

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 to

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 > IncompatibleRemoveServiceExcepti

GWT RPC and DevMode

2013-09-27 Thread stuckagain
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 the build in Jetty (this project uses EJBs, MQ, and zillions of other technologies that require a full J2EE stack to run

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; } ... I

Re: TabLayoutPanel that dynamically resizes to selected tab content

2013-09-06 Thread stuckagain
> As a workaround, maybe you could use a TabLayoutPanel with empty tabs to > work 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

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

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 fixe

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 r

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 workin

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). T

Re: GWT website moved to gwtproject.org

2013-07-09 Thread stuckagain
g for you please file a bug. > > - Daniel > > > On Wed, Jul 3, 2013 at 10:59 AM, stuckagain > > wrote: > >> Great work! >> >> Wouldn't it be nice if the online docs would have been created as a GWT >> application as well ? >> Right now na

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

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 ver

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 thrown

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 res

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 scree

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 th

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 9:1

Re: GWT issues while waiting for gwtproject ?

2013-04-16 Thread stuckagain
and also use it outside > 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 b

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 contrib

Re: GWT issues while waiting for gwtproject ?

2013-04-15 Thread stuckagain
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 ad

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 WidgetColl

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-03-04 Thread stuckagain
ialized these differently by default? I'd really > 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: &g

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 sur

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

Re: GWT RPC future ?

2013-02-07 Thread stuckagain
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, >>

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 trivial

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 t

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 subsc

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 misbeha

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

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

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 support

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 https

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 https://groups.google.com/d/msg/google-web-t

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 cl

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

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 st

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"

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 grou

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 subscribed

Re: CellTable as a replacement for incubator ?

2010-11-03 Thread stuckagain
Hi John, On Nov 2, 6:50 pm, John LaBanca 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 other > projects goin

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 se

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

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

2010-08-26 Thread stuckagain
takes away a few nice features of using a CssResource. David > /dmc > David Chandler > Google Web Toolkit Team > > On Aug 26, 4:40 am, stuckagain wrote: > > > > > Hi, > > > Since I get no response from the GWT dev-team on reported bugs I am > > beg

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

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 bugs

Re: Found bug in PopupPanel in IE6/7/8

2010-05-25 Thread stuckagain
Nobody seems to care about bugs nowadays ? On May 20, 9:17 am, stuckagain wrote: > People, > > I reported a new issue on GWT in IE (6/7/8) where I no longer get > keyboard events when closing down aPopupPanelby clicking on a > textbox. > > In case somebody is bored and wants

Found bug in PopupPanel in IE6/7/8

2010-05-20 Thread stuckagain
People, I reported a new issue on GWT in IE (6/7/8) where I no longer get keyboard events when closing down a PopupPanel by clicking on a textbox. In case somebody is bored and wants to fix it ? I looked through the code, but I don't quite see where the problem might be coming from. http://code.

Re: Intergrating other GWT projects in eclipse

2009-05-14 Thread stuckagain
Hi, It's actually very simple: Just make sure that you create a jar that contains all the sources and classes. The compiler will need access to the sources, a regular jar with just the .class files is not enough. If you look at the gwt-user.jar you will notice that the exact same thing is done