Re: New To GWT: Objects in composite object not aligned correctly

2013-04-27 Thread Boris Lenzinger
Hello, May be try to use UIBinder and use HTMLPanel so you can have a good control over the HTML that is generated. That is what I'm doing since Horizontal and Vertical panels are built with table. Using HTMLPanel with table gives you a cell per cell control. Boris 2013/4/25 Chris Brown

Re: Download of GWT 1.7 keeps failing

2013-04-27 Thread Thomas Broyer
Why would you want to download a *4 years old* version that's more than likely to produce code incompatible with today's browsers? (unless you're only supporting oldIEs?) On Wednesday, April 24, 2013 6:10:29 PM UTC+2, Jerin Joseph wrote: Hi, I'm still facing this error, I'm not able to

Re: Entity not persisted, using JDO,RequestFactory.

2013-04-27 Thread Thomas Broyer
On Friday, April 26, 2013 6:05:42 AM UTC+2, Aman Sharma wrote: I am still not able to persist poll entity using Requestfactory in GWT. Please point out if there's anything wrong with following code. view.setMsg(preparing); PollRequest pr = requestFactory.pollRequest(); UserRequest ur =

Re: In the suggest box, is there a way to avoid highlighting the matched letter?

2013-04-27 Thread Thomas Broyer
On Saturday, April 27, 2013 3:09:58 AM UTC+2, Mohammad Al-Quraian wrote: As it says in the title, is there an easy way? Because it doesn't look very pretty in the Arabic language. The highlighting is done by the MultiwordSuggestOracle., so either don't use it, or wrap it in your own

Re: java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory

2013-04-27 Thread Thomas Broyer
On Saturday, April 27, 2013 1:53:39 AM UTC+2, Kris wrote: Hi, I have a class path problem. Using eclipse juno, maven plugin and gwt plugin. In my gwt server code I use slf4j. When doing something on the gui that makes a RPC I get.. java.lang.NoClassDefFoundError:

Re: GWT 2.5.1 - Incubator Deprecated Classes

2013-04-27 Thread Andrea Boscolo
By the errors above, I guess you need to move from Paging/ScrollTable to DataGrid (or CellTable). But it is not a matter of changing imports. The APIs are quite different, you need to refactor in order to move to DataGrid. You can start from

Re: NumberConstants_xx.properties override

2013-04-27 Thread Jeff Isenhart
I solved this by deferred binding like so: replace-with class=com.my.cool.class.NumberConstants when-type-is class=com.google.gwt.i18n.client.constants.NumberConstantsImpl/ when-property-is name=locale value=es_MX/ /replace-with On Tuesday, April 16, 2013 9:20:06 AM UTC-7, Jeff

UiBinder Button created hidden not responsive after being shown

2013-04-27 Thread brec
In the ui.xml: g:Button ui:field='continu' addStyleNames='{style.continue-button} {style.hidden}' ui:text from='{strings.continu}' / /g:Button In java when it's time to show the button: @UiField Button continu; ... showWidget(continu); ... protected void

[gwt-contrib] Re: Genericizing com.google.gwt.user.client.ui.Composite for type safe extends

2013-04-27 Thread Thomas Broyer
On Friday, April 26, 2013 6:59:32 AM UTC+2, Goktug Gokdogan wrote: I would like to get your feedback for fixing following issue: https://code.google.com/p/google-web-toolkit/issues/detail?id=4665 With generic Composite classes we can introduce other type-safe helper composites like

[gwt-contrib] Re: Genericizing com.google.gwt.user.client.ui.Composite for type safe extends

2013-04-27 Thread Jens
So what is the gotcha? First of all old code will give warnings due to missing generic type in Composite. Also classes that doesn't need to enhance the type information will still need to provide a type for Composite, this includes most of the Composite uses with the UIBinder. GPE