Using DatePicker in CellTable

2013-11-22 Thread Nermin
Dear Group, I have two probably simple questions for using DatePicker in CellTable: *1. In case, no date had been specified yet, Is it possible to show a empty Datepicker field?* I get NPE if date is null, which is probably fine. At this moment, I populate the date field with current date,

Re: GWT Serialization Broken?

2013-11-22 Thread Jens
You must refresh/reload your server if you change serializable classes. GWT generates a file called hash.rpc and this file changes whenever you modify a serializable class. Your server must have the up-to-date version of that file. Your both example classes look fine. It's just a deployment

One-To-Many and RequestFactory Proxy

2013-11-22 Thread almagnit
I have two entities: class A { @ ManyToOne @ Fetch (FetchMode.SELECT) @ JoinColumn (name = b_id) B b; } class B { @ OneToMany (mappedBy = b) @ Fetch (FetchMode.SELECT) List A a; } interface AProxy { B getB (); setB (B b); } interface BProxy {

Re: Is there way to compile GWT in production mode?

2013-11-22 Thread Thomas Broyer
You don't need to compile your module differently depending on which one you want to in devmode or prod mode; this can be done at runtime; see https://code.google.com/p/google-web-toolkit/issues/detail?id=2079#c21 On Friday, November 22, 2013 1:35:50 AM UTC+1, Vikram Dave wrote: Thanks for

GWTTestCase et Cucumber

2013-11-22 Thread oussama abid
*Bonjour ma question est simple j'ai des tests dans une application GWT, ses tests sont passant[code]public class TestMyClass extends GWTTestCase{public void test_un_ensemble_de_compte_facturation_dans_la_vue() { assertNotNull(view.getAccount());}}[/code]Mon

Problem with UIbinder Tutorial

2013-11-22 Thread cedjoubert
Hi, I'm trying this example, but all works fine, except the style Login.css is not applied... http://www.tutorialspoint.com/gwt/gwt_uibinder.htm Could you tell for which reason the Login.css style is not applied please ? (it is exactly the same code than the URL) Regards Cédric -- You

Re: Thoughts on GWT 3.0 re: Java 8 and IE 8/9

2013-11-22 Thread Piotr Kosmowski
I think this is very important feature. We are using UIBinder extensively and we think it is a great step forward in therm of declarative design, however it is still hard to use and produce XML's by our UI designers. The best template engine I've ever seen for UI designers is Thymeleaf and

Re: IncompatibleRemoteServiceException after new deployment

2013-11-22 Thread Magnus
Hi, ok, I opened my app in a browser, then made a change to a class implementing IsSerializable: I made a change to the class Announcement, which in turn uses an enum AnnouncementType. Then I redeployed the app and used the app within the still open browser. I expected my exception handler to

GWT Compiler just stops for some reason..? (split points)

2013-11-22 Thread VW
Hello, im working on a relatively big gwt project and apparently my compiler just freezes for no obvious reason. Last line of compiler log: [java]Looking up initial load sequence for split points And nothing else happens from there. Any ideas? -- You received this message because you

Get font-family from external css?

2013-11-22 Thread darkflame
Is it possible to get the font information set by a Class (ie, not on the element directly). I assume it can be done by looking at the Css file and sort-of parsing it for the information needed.but this seems a bit of a thudge. Is there a better method? Background; I would like to get the

Using DatePicker in CellTable

2013-11-22 Thread jaga
For 1) just override the render() method of the cell or column. If the value is null do nothing otherwise render as normal . For 2) I suggest you look at the cell validation example in the gwt showcase. You could also probably just as well ignore the modified value and just call

Re: Get font-family from external css?

2013-11-22 Thread Jens
I think you could read the computed style of an element by using a simple JSNI method. Here is an example: https://code.google.com/p/gwt-examples/source/browse/trunk/GoneVertical-Core/src/org/gonevertical/core/client/style/ComputedStyle.java?spec=svn3084amp;r=3084 -- J. -- You received this

Re: IncompatibleRemoteServiceException after new deployment

2013-11-22 Thread Jens
The server's log showed a SerializationExeption (see below): The enum AnnouncementType was not assignable to IsSerializable. And indeed, AnnouncementType was not implementing IsSerializable, that's correct. But this code is running for years. Why does this exception occurr now? Because

Re: Get font-family from external css?

2013-11-22 Thread Thomas Wrobel
Bingo, that was far easier then expected. Thanks a bunch. ~~~ Thomas Bertines online review show: http://randomreviewshow.com/index.html Try it! You might even feel ambivalent about it :) On 22 November 2013 20:06, Jens jens.nehlme...@gmail.com wrote: I think you could read the computed

Advanced GWT Components

2013-11-22 Thread Duff
I am very curious about the Advanced GWT Components project but I feel really stupid. I don't seem to get the quick start guide (http://advanced-gwt.sourceforge.net/quickstart.html) to work, either I try with maven based or an ant based project. The project builds and all, but no grid is

Re: [gwt-contrib] JsArrayList - ListT implementation for OverlayTypes (wrapping JsArrayT)

2013-11-22 Thread Goktug Gokdogan
On Thu, Nov 21, 2013 at 6:46 PM, Danilo Reinert danilorein...@gmail.comwrote: Hi all, Finally I've made an acceptable implementation of ListT for JavaScriptObjects. Thanks to T. Broyer's suggestion on this topichttps://groups.google.com/d/msg/google-web-toolkit/_8X9WPL6qwM/C8GfwAM0ItAJ

[gwt-contrib] com.google.gwt.view.client.Range why client only?

2013-11-22 Thread Patrick Tucker
Why is Range not a shared class? If for some strange reason it needs to be client only, why does it implement Serializable? -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups GWT Contributors group.

[gwt-contrib] elemental templates

2013-11-22 Thread Stephen Haberman
Hey, Just curious, but what's the story around templating for Elemental? Googling around seems like it's not supported by UiBinder. Is there anything coming along/WIP internally? Will Goktug's new widget proposal be based on Elemental? I'm just curious as, after glancing at it again, I finally