Re: Editors and Lists

2011-12-15 Thread Alex Dobjanschi
Yes, something like that. I'll submit my findings here (as I haven't found any thread similar). Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

wrong gwt.xml in the project

2011-12-15 Thread roman_e
Hi everyone. I've done 2 projects in gwt now. After I've finished project 1, i started project 2. But now, I have to fix a bug in project 1, so tried to start it with hosted mode in eclipse. But now, i get the following error: [ERROR] [project_1_gwt_iwebkit] - Unable to find

scrollbar is not coming

2011-12-15 Thread yashujn
Hi all, I am facing some strange problem.I am devloping a website using gwt.. problem is when i run my application on browser and after tht if i resize the browser window both horizontal and vertical scrollbar are not coming. instead of tht all my portelts and menu bar

NumberFormat currency pattern issues (wrong positiveSuffix and possible encoding issues)

2011-12-15 Thread Tiago Rinck Caveden
Hello, I'm having some weird issues with NumberFormat. I'm using it with the currency pattern, which for my locale is the euro. The first problem I've notice is that the parser is treating the string € as a positiveSuffix. And if such string is not at the end of the string being parsed, the

gwt.rpc file fomat

2011-12-15 Thread Kanagaraj M
i have xxx.gwt.rpc file generated in my application. The following are the contents java.lang.Boolean, true, true, false, false, java.lang.Boolean/476441737, 476441737 java.lang.Exception, true, false, true, false, java.lang.Exception/1920171873, 1920171873 java.lang.Integer, true, true, true,

How to make RichTextBox auto-resizing(grow/shrink linex)?

2011-12-15 Thread Alex Luya
Some guy has make Textarea auto-resizing here:http://ambitz.com/2010/12/11/autogrow-textarea-with-gwt/, ,but it's idea can't be ported to RichTextArea,has anyboday figured out a way to solve this problem? -- You received this message because you are subscribed to the Google Groups Google Web

Re: wrong gwt.xml in the project

2011-12-15 Thread Frank
Check your build path and run configurations in eclipse On Dec 15, 9:30 am, roman_e roman.eichenber...@e-switch.ch wrote: Hi everyone. I've done 2 projects in gwt now. After I've finished project 1, i started project 2. But now, I have to fix a bug in project 1, so tried to start it with

Re: scrollbar is not coming

2011-12-15 Thread Frank
Give your widgets a px size instead of a % size ? Widgets with a % size will take up the amount of % as given relative to the size of the screen. So if you resize the screen the widgets are resized. Also LabelBase (and thus Label, HTML and many others) has a setWordWrap method. Setting this to

Swipe gesture handler

2011-12-15 Thread mma
Hi there. Is there any easy / fast way to implement swipe gesture handling -- similar to iOs UISwipeGestureRecognizerhttp://developer.apple.com/library/ios/documentation/UIKit/Reference/UISwipeGestureRecognizer_Class/Reference/Reference.html#//apple_ref/occ/cl/UISwipeGestureRecognizer ?

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: Formatting lists with GWT i18n API

2011-12-15 Thread Adam T
Hi Luiz, If you've not stumbled across this already, just add the format marker text in your message definitions and it should work, i.e. @DefaultLocale(pt_BR) public interface AppMessages extends Messages { @DefaultMessage(elementos: {0,list,text}) @AlternateMessage({one,

exceeding the limit of 255 words on GWT 2.4 but not on 2.3

2011-12-15 Thread mma
Hi there. I get the following error message when compiling UiBinder template in GWT 2.4 but not in 2.3: ERROR] Errors in 'generated://C5AF780801F58242DB0EE69038CD0828/com/racios/appoint/client/widgets/weekcalendar/WeekCalendarDesktop_WeekCalendarDesktopUiBinderImpl.java' [ERROR] Line 16:

Re: wrong gwt.xml in the project

2011-12-15 Thread roman_e
Hi Thanks for your help. But I can't find any references to the other project in run configurations and the build path. On 15 Dez., 11:30, Frank frank.wyna...@gmail.com wrote: Check your build path and run configurations in eclipse On Dec 15, 9:30 am, roman_e roman.eichenber...@e-switch.ch

Re: wrong gwt.xml in the project

2011-12-15 Thread Frank
Try the following steps : - Close the project 2 - Open project 1 - Menu Run - Run Configurations - Now in the tree you should be on the runconfiguration for project 1. In the tree double click on the parent item Web Application. - This should create a New_configuration. - Double click on

Re: Editors and Lists

2011-12-15 Thread Stefan Ollinger
You need to supply ListEditor with an EditorSource: myListEditor = ListEditor.of(new MyEditorSource()); The EditorSource generates the actual editor instances for the list items. The ListEditor calls the EditorSource for each item on the list, and flushes the wrapped list. Take a look at the

Re: wrong gwt.xml in the project

2011-12-15 Thread roman_e
This don't work, I still get the error when I start it. Is it possible to choose which gwt.xml file the IDE should take to run the application? On 15 Dez., 13:37, Frank frank.wyna...@gmail.com wrote: Try the following steps : - Close the project 2 - Open project 1 - Menu Run - Run

Re: wrong gwt.xml in the project

2011-12-15 Thread Frank
Verify that in your run configuration under the GWT tab the correct module is selected under Available Modules ??? (strange problem you are having) On Dec 15, 1:59 pm, roman_e roman.eichenber...@e-switch.ch wrote: This don't work, I still get the error when I start it. Is it possible to choose

Re: Formatting lists with GWT i18n API

2011-12-15 Thread Luiz Mineo
Thanks! It works now. :) After reading through the GWT doc [1], I thought the third argument wasn't necessary. Also, I didn't know that 'text' is a valid value for the format argument, since I found examples only for number and date. [1]:

Re: GWTTestCase No tests found in *

2011-12-15 Thread MagusDrk
Ovidiu: My Test Class code: package com.xxx.app.client.test; import com.google.gwt.junit.client.GWTTestCase; public class MyTestClass extends GWTTestCase { public void test() { assertTrue(I've got this to work, true); } @Override public String getModuleName() { return

Re: How GWT.create() works with service?

2011-12-15 Thread Thomas Broyer
On Thursday, December 15, 2011 4:22:22 AM UTC+1, Kanagaraj M wrote: Is there a way i can see the content of Xxx_Proxy? Pass the -gen option to the DevMode or Compiler to tell it to output the generated files in the given folder. See

Re: GWTTestCase No tests found in *

2011-12-15 Thread MagusDrk
Ed, thanks. That forum is interesting, but I think thats a little complicated, specially by the part of change objects to asWidgets. actually, I'm looking for an easy-fast way to do TDD (but not from zero, I have already implemented user interfaces and it's complicated to modify them). Have you

Re: NumberFormat currency pattern issues (wrong positiveSuffix and possible encoding issues)

2011-12-15 Thread Thomas Broyer
-62, -96, or in hexadecimal C2,A0 is the encoding (in UTF-8) of a non-breaking space (U+00A0, widely known on the web as nbsp;) It's a distinct Unicode character than a space (U+0020, encoded in UTF-8 as 32); it's not an encoding issue (btw, all strings in JavaScript are in UCS-2, just like in

Re: Basic MDI (Multiple Document Interface) question

2011-12-15 Thread Andrea Boscolo
Interesting. Can you share the resize part if by resize you mean via mouse? -- 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-toolkit/-/exi-uPmpzuIJ. To post

Re: Session management in GWT

2011-12-15 Thread Albert van Veen
Hi Kim, thanks for your feedback so far. Unfortunately without any luck so far. Appearantly the session is only saved for the time the servlet call is running and not for the time I've tried 2 different setups. I've eight servlets which all extend BaseServlet e.g. AServiceImpl and BServiceImpl

Re: exceeding the limit of 255 words on GWT 2.4 but not on 2.3

2011-12-15 Thread Thomas Broyer
AFAICT, UiBinder in GWT 2.4 generates a SafeHtmlTemplates (instead of building an HTML string by appending to a StringBuilder, as was done in previous versions). This means that everywhere you have a replaceable part (e.g. {foo} in an attribute, or a widget or ui:msg) it will generate a

Re: Session management in GWT

2011-12-15 Thread Jens
In your session listener: session.setMaxInactiveInterval(3); means that after 3 seconds without any request to your server, your server will invalidate your session. So if you make the first request a new session will be created. If you then wait 3 seconds before doing the next request, you

GWT as reporting application

2011-12-15 Thread Z.A Jafari
Hi there, I have my ERP application written in Swing and hibernate and I have many reports in my application. Now I am planning to shift the reports to webbased using GWT. I want to know is GWT faster then swing in performance and features. Also I shall appreciate if some resources or tutorial is

ie8 browser compatibility - big issue

2011-12-15 Thread tanteanni
i just installed ie8 to check compatibility of my gwt application. user.agent property is set as follows: set-property name=user.agent value=gecko1_8, safari, ie6, ie8, ie9, opera / the app works fine on chrome and ff but fails on ie8: - on left side of the app a tree (some hundred items)

Re: ie8 browser compatibility - big issue

2011-12-15 Thread Jens
Is IE8 in standards mode? You can verify this by opening the IE dev tools and see if it displays Browser Mode: IE8 and Document Mode: IE8 Standards. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web

Re: exceeding the limit of 255 words on GWT 2.4 but not on 2.3

2011-12-15 Thread mma
Hi Thomas. The template is basically a table representing a 7-day calendar which has: - Different styling for each 0-30 and 30-60 minute slot interval of each hour - Different styling for each odd and even hour row - Different styling for each day column As you can imagine, just

Re: ie8 browser compatibility - big issue

2011-12-15 Thread tanteanni
thx for quick reply. i just installed ie dev toolbar from here: http://www.microsoft.com/download/en/details.aspx?id=18359 and activated the bar. but where to find browser mode and document mode? besides this i get the following exception on client side: SEVERE: class

Re: ie8 browser compatibility - big issue

2011-12-15 Thread Thomas Broyer
You don't have to install anything in IE8: just hit F12 to open the Developer Tools (you'll also find them in some menu, I'd guess in the Tools menu) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: ie8 browser compatibility - big issue

2011-12-15 Thread tanteanni
thx it diplays: Browser Mode: IE8 and Document Mode: IE8 Standards. -- 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-toolkit/-/NECqvdm9vMwJ. To post to this

Newbie question on remote service and object hierarchy

2011-12-15 Thread Bucky
I'm starting to build an application which will eventually transfer several types of objects between the client and the server. I started my development with one object User. I got that working. Next, I wanted to provide an object abstraction were I could implement common methods across my

Re: wrong gwt.xml in the project

2011-12-15 Thread roman_e
This setting is correct too. I checked all the settings once more, but I couldn't find wrong ones. I think I create a new project and copy the sources to the new one. Thanks a lot for your help. On 15 Dez., 14:11, Frank frank.wyna...@gmail.com wrote: Verify that in your run configuration under

How use caching with gwt

2011-12-15 Thread HARISH SAHARAN
Dear all, I am working on a big project of gwt and i want to know how to handle the gwt caching tech. and how this is impotent for us for performance tunning. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Error while launching a GWT Webapp

2011-12-15 Thread jad
Hello, I get this error while lauching my GWT application : Linking modules Bootstrap link for command-line module 'XXX' Linking module 'XXX' Invoking Linker Standard [ERROR] Failed to link java.lang.NullPointerException at

Accessing HTTPSession in ServiceLocator or DAO

2011-12-15 Thread Bestmacfly
Hi, I'm new to GWT and just trying to build a small but complete project from Login-Procedures over dynamic frontend up to connection to DB by JPA. This works so far for me, but I have following problem: For Login procedure I'm using RPC. In my Server Service I'm putting a User Object into

[ERROR] Failed to link

2011-12-15 Thread jad
Hello, I get this error while lauching my GWT application : Linking modules Bootstrap link for command-line module 'XXX' Linking module 'XXX' Invoking Linker Standard [ERROR] Failed to link java.lang.NullPointerException at

How well does a GWT webapp play with Google Web Crawler

2011-12-15 Thread Draško
I read the standard proposal how dynamic webapps should be made crawler friendly, but what if there is no server to generate snapshots?! I built a simple multi-view webpage using MVP pattern and event handling. Unfortunately, the Google Webmaster Tool, as well as Google Analytics, do not see

Drag drop columns on celltable

2011-12-15 Thread beto
Hi everyone, I'm working with a CellTable and need to allow the user to change the order of the columns dragging and dropping. I don't need to drag the whole column, with just the column's header would be enough. But haven't found a way of doing it with dnd or gquery cause columns and headers

Re: NumberFormat currency pattern issues (wrong positiveSuffix and possible encoding issues)

2011-12-15 Thread Tiago
Thank you Thomas for the clarification. Do you agree though that there's a bug on NumberFormat? It should not require nbsp;€ to be in the end of a string it parses, although it may add it to the end of a string it formats. Right? On Dec 15, 2:40 pm, Thomas Broyer t.bro...@gmail.com wrote: -62,

Re: ie8 browser compatibility - big issue

2011-12-15 Thread Paul Stockley
Make sure Ie isn't running in compatibility mode. This will result in a blank screen -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Overriding CellTree styles

2011-12-15 Thread Christopher Piggott
I'm looking for a better way to override CellTree styles. I found the default styles: http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/gwt/user/cellview/client/CellTree.css?r=8772 and interface:

-noserver -startupUrl https://

2011-12-15 Thread Jaroslav Záruba
Hi I have DevMode with *-noserver* working against one server, I am unable to make it work against another, the later being with *-startupUrl https://...*. I guess the talking to *-remoteUi* is being made via *https* too in such case, which could be the issue. I tried to add *-server :ssl* but

Unowned relationships on unsaved data objects.

2011-12-15 Thread MagusDrk
Hi All. Mi name in Miguel and I'm getting a kind of trouble about modeling data objects to the google data store. Right now I have a data model to be saved in the datastore, I need cover next requirements, but I really don't know to to handle this. I have a data model wich entities have other

Re: ie8 browser compatibility - big issue

2011-12-15 Thread Jens
Well then use the dev tools to check your DOM structure / CSS and modify it so that IE8 displays your widgets (I am pretty sure they are attached to the DOM but rendered with a height of 0px or something like that). GWTs widgets are cross browser compatible but as soon as you add custom CSS

Re: Overriding CellTree styles

2011-12-15 Thread Jens
CellTree has a constructor that takes a CellTree.Ressource instance. I haven't used CellTree yet but I would say you can create an interface that extends CellTree.Ressources (which is a ClientBundle) for overwriting images. To overwrite CSS create an interface that extends CellTree.Style

Re: Overriding CellTree styles

2011-12-15 Thread Christopher Piggott
OK yeah ... that worked. I made this: public interface TreeResources extends CellTree.Resources { @Source(../CellTree.css) public CellTree.Style cellTreeStyle(); } that css file is basically a copy of the one I linked earlier, but modified to my liking. The only thing that

THEAD datagrid

2011-12-15 Thread Claudio Pomo
Hi, I've problem with datagrid widget. When I start my application and all is ok, but when I click on an element of my datagrid the head of table change color and it becomes light-blue color. There is only one entity that doesn't follow this way, but this entity don't work so fine. Only when I

Re: How well does a GWT webapp play with Google Web Crawler

2011-12-15 Thread Raphael André Bauer
On Thu, Dec 15, 2011 at 3:10 PM, Draško drasko.ko...@googlemail.com wrote: I read the standard proposal how dynamic webapps should be made crawler friendly, but what if there is no server to generate snapshots?! I built a simple multi-view webpage using MVP pattern and event handling.

Re: Overriding CellTree styles

2011-12-15 Thread Christopher Piggott
there is also magic @external. Using that you can style eg. gwt-* classes without any problems in your own ui binder / cssResources. Yeah. I did that with the SplitLayoutPanel like you said. I couldn't figure out how to get it into a resource bundle, which is what I wanted. I just tried

Re: Overriding CellTree styles

2011-12-15 Thread Jens
Shouldn't it be @sprite .cellTreeSelectedItem { *gwt-image: 'cellTreeSelectedBackground';* //instead of 'myCellTreeSelectedBackground' background-color: #628cd5; color: white; height: auto; overflow: auto; } because the method that returns the ImageResource has that name? -- J. -- You

Re: GWT compiler hangs when Compiling permutation 0

2011-12-15 Thread tunichtviel
I finally found the problem by attaching a Java debugger to the GWT compiler. The Javascript source code included the following line: if (true) { Seems there is a bug in the GWT compiler that does not correctly handle that line of code. -- You received this message because you are

Re: GWT compiler hangs when Compiling permutation 0

2011-12-15 Thread Jens
I think you should file a bug for this and/or maybe post this issue in the Google Web Toolkit Contributors group. Would be great if you can narrow your issue down to a very simple GWT app. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Overriding CellTree styles

2011-12-15 Thread Christopher Piggott
Yes, I was transliterating it into the mailing list and I made that mistake. That doesn't seem to be the issue, though - even fixing that, it's still angry about not being able to find cellTreeSelectedItem. I wonder if I'm overriding the CellTree.Resources this way if I have to override more of

how to use classes from another module

2011-12-15 Thread Hani Hashemi
i have two module that are **library.reader** and **library.book** i want to access from module **book** to series of **reader class** but i can't do it i use this command that i wrote below in book.gwt.xml but it didn't work inherits name=reader/ -- You received this message because you

Re: Overriding CellTree styles

2011-12-15 Thread Christopher Piggott
Oh good grief. @sprite .cellTreeSelectedItem { ... } /* works */ @sprite .cellTreeSelectedItem { ... } /* doesn't work */ The @sprite has to be on the same line? Grr. Well, at least I'll never make that mistake again! On Dec 15, 2:28 pm, Christopher Piggott cpigg...@gmail.com wrote:

Re: CellTable column and cell style

2011-12-15 Thread divStar
Hello GWT People! I think I've at least found the reason why I am not able to style the whole column with a given style. Let's say I want to apply display: none; to each cell (EXCLUDING the header), I was successful in doing so using the setCellStyleNames- method from the Column?,?-object.

Re: g:HTMLPanel size

2011-12-15 Thread Sébastien Tromp
Can't you simply define your body element in your CSS? E.g. body { background-image: something; font-family: Arial; width: 100%; height: 100%; } On Fri, Dec 9, 2011 at 11:03 PM, Christopher Piggott cpigg...@gmail.comwrote: What I came up with was this:

Re: How to save just a child?

2011-12-15 Thread MagusDrk
Hi, an aditional data, I'm doing it in a JUnit test clase. I don't know if it can influence in the problem. I'm Still waiting for a response. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: GWT + GAE common issues.

2011-12-15 Thread MagusDrk
Hi, Patrick. I'm improving with RequestFactory as succesfully. I have a question about datastore.Key (again), The correct way to expose it to a client side is with KeyFactory (keyToString...)? I've tried to use @ProxyForName(value = com.google.appengine.api.datastore.Key) public interface

Re: sort handler in datagrid problem

2011-12-15 Thread Casey
I'm having the same issue. What was your solution? On Dec 13, 9:00 am, Rodrigue Lagoue rlag...@googlemail.com wrote: Hi Ed, thank you for your response. I just solved the problem. The cause was the use of the method ListDataProvider#setList(), it assigns the field listWrapper to a new

Re: sort handler in datagrid problem

2011-12-15 Thread Casey
I was able to work around this by adding a setList method to ListHandlerT. With the new method I was able to execute the following code after the grid row data had been updated: ListDataProvider.setList(data); listSortHandler.setList(ListDataProvider.getList()); That set the new listWrapper to

Another cell tree question - whole tree disappears

2011-12-15 Thread Christopher Piggott
I have another CellTree question but this one is weirder. I am trying to make a generalized tree model. For now it just uses strings, plan is to make it more exciting later. Two things can go into this tree: static class Category extends Leaf { Category(String label) {

Re: Another cell tree question - whole tree disappears

2011-12-15 Thread Christopher Piggott
I think this is a known bug. http://code.google.com/p/google-web-toolkit/issues/detail?id=6359 On Dec 15, 7:14 pm, Christopher Piggott cpigg...@gmail.com wrote: I have another CellTree question but this one is weirder. I am trying to make a generalized tree model.  For now it just uses

i18n/localization - multiline text in .properties file

2011-12-15 Thread Vitaly Trifanov
I'm using UiBinder with GWT localization features to create UI of my application. So, I have: - View.ui.xml file with directive ui:with field=messages type=com.csn.core.resources.UiMessages/ - usage of messages.welcomeText property inside g:HTML element at this page. Problem is that welcomeText

Please add me to your hotlist

2011-12-15 Thread Mohammed Abdul
Hi Associates, This is Abdul. You are requested to add me to your distribution list and keep sending your hot-list regularly. I work with direct clients and implementing partners / preferred vendors. Email is the best way to communicate with me. My ID is mohammed.ab...@exatechinc.com Thanks

Re: GWT as reporting application

2011-12-15 Thread Z.A Jafari
please help On 15 December 2011 17:44, Z.A Jafari zjaff...@gmail.com wrote: Hi there, I have my ERP application written in Swing and hibernate and I have many reports in my application. Now I am planning to shift the reports to webbased using GWT. I want to know is GWT faster then swing in

Re: GWT as reporting application

2011-12-15 Thread Harpal Grover
There is a framework called Gilead which you can use to integrate hibernate with GWT. I've used it on 2 projects so far and it works very well. Perform a google search for this to find out more information. There are a couple of chart libraries you can use in GWT, google GWT Charts and you will

Re: GWT as reporting application

2011-12-15 Thread Z.A Jafari
thanks a lot.do you know any books on GWT and Hibernate. do you reckon to go for GWT or Ext GWT On 16 December 2011 09:50, Harpal Grover harpal.gro...@gmail.com wrote: There is a framework called Gilead which you can use to integrate hibernate with GWT. I've used it on 2 projects so far and it

Re: how to use classes from another module

2011-12-15 Thread Kanagaraj M
You have to use fully qualified names like *library.Reader* -- 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-toolkit/-/bmZLXPmxGRsJ. To post to this group,

Re: GWT as reporting application

2011-12-15 Thread Kanagaraj M
you can use highcharts, it is nice. -- 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-toolkit/-/4El-c91vNnIJ. To post to this group, send email to

Re: ie8 browser compatibility - big issue

2011-12-15 Thread tanteanni
did you say if i change gwt's standard styles the main advantage of gwt is destroyed? or the other way around how to use gwt to keep cross browser compatibility? what are custom changes where is the border between custom changes and using the api? is there any documentation about that. (i am

Re: i18n/localization - multiline text in .properties file

2011-12-15 Thread Jaroslav Záruba
\ works in regular Java, should in GWT too cheers Jaro -- 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-toolkit/-/WxOllL4iGggJ. To post to this group,

[gwt-contrib] Re: Switch more gwt-user code to use SafeHtml. (issue1614803)

2011-12-15 Thread jlabanca
http://gwt-code-reviews.appspot.com/1614803/diff/8/user/src/com/google/gwt/user/client/DOM.java File user/src/com/google/gwt/user/client/DOM.java (right): http://gwt-code-reviews.appspot.com/1614803/diff/8/user/src/com/google/gwt/user/client/DOM.java#newcode1192

[gwt-contrib] Re: Switch more gwt-user code to use SafeHtml. (issue1614803)

2011-12-15 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1614803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors