Re: Login + CRUD example

2013-04-01 Thread Rob
Hi, -> http://uptick.com.au/content/gwt-login-security -> http://uptick.com.au/content/crud-gwt-gwtp-smartgwt-and-jpa Cheers Rob -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails fr

Adding Markers to MapWidget onEvents

2013-04-01 Thread Jamel Toms
I'm getting an exception when I'm trying to add simple markers to a map. The error is a little to cryptic for me to decode. Any ideas? Here is the background: Exception: @com.google.gwt.maps.client.overlays.Marker::setMapImpl(Lcom/google/gwt/maps/client/MapImpl;)([JavaScript object(34)]): In

get Brouser's right

2013-04-01 Thread amit rana
i have tab panel in middle on my GWT root panel, and set one last tab to the right (others are by default left) now i want to make that right tab change position on scroll and re-size. i want that tab always right of the browser. i try fix but it's make problem in vertical scroll. any solu

gin field injection

2013-04-01 Thread kim young ill
hi there, i got into an issue with gin, like this: bind(MyMessages.class)in(SingleTon.class) interface MyMessages extends Messages{ String txt1(); } @ImlementsBy(MyWidgetImpl.class) interface MyWidget { } @Singleton class MyWigetIml implements MyWiget{ @Inject MyMesages msg public MyWidgetIml

any one tried GWT with SPDY?

2013-04-01 Thread bhomass
do you still leave the RPC mechanism exception implement SPDY somehow? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googl

Re: Complex JSON and overlay types

2013-04-01 Thread Stefan Ollinger
Your interfaces dont match the JSON data structure. You would need to use Map and List, maybe sth like this: interface Message { List getRecords(); } interface Person { Map> getNames(); } On 01.04.2013 21:37, sebastien.rib...@isen-lille.fr wrote: Thanks. I try it, but I don't undestand ho

Re: Complex JSON and overlay types

2013-04-01 Thread sebastien . ribeil
Thanks. I try it, but I don't undestand how does it works... Do you have simple examples or tutorials? I try to do it: *interface Person { Names getNames(); String getStyle(); }* * interface Names { // Other properties, as above String getProp1(); String getProp2(); String getPro

Re: Complex JSON and overlay types

2013-04-01 Thread Stefan Ollinger
Hi, you could take a look at http://code.google.com/p/google-web-toolkit/wiki/AutoBean Regards, Stefan On 29.03.2013 14:18, sebastien.rib...@isen-lille.fr wrote: Hi everybody, I want to read this kind of JSON with GWT: /{"records": [{"names": {"John": ["50", "H", "US"], "Jack": ["50", "H",

Re: Using JPA Hibernate persist()... Where is the Data?

2013-04-01 Thread Nicola Blaine
> hi > I am also having the following error Class was specified in persistence-unit transactions-optional but not annotated, so ignoring. But was the only way to get rid of the issue was to create a new project. Also were u using google cloud SQL. Could you post an example of ur persisten

Re: GWT UI widgets auto-alignment inside different Panels proper solution needed.

2013-04-01 Thread Subhrajyoti Moitra
"...handle consistently looking GWT forms"=> Twitter bootstrap gives a very consistent lnf to forms. For html based "templates" try this concept from a larger framework-Errai. https://docs.jboss.org/author/display/ERRAI/Errai+UI On Mon, Apr 1, 2013 at 9:00 PM, BM wrote: > Interesting.

Re: Complex JSON and overlay types

2013-04-01 Thread sebastien . ribeil
Thank you for your answer. If I do that: *public final native JsArray getTest() /*-{ return this.records[0].names.John; }-*/;* * *I get *50,H,US, *so it's OK for that. But I'm not supposed to know "John" or "Jack", so how can I get them? Le samedi 30 mars 2013 12:00:06 UTC

how to deploy a demo program created by GWT glugin for eclipse?

2013-04-01 Thread wahaha
we use GWT glugin to create a demo project with sample code,and then we can compile the client part to Javascript. and then,how should we deploy the sever part to jetty? sorry for my poor english.. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit"

Re: GWT UI widgets auto-alignment inside different Panels proper solution needed.

2013-04-01 Thread BM
Interesting. Thanks for that. Is it compatible with GWT 2.5? What my real goal is to have global way to handle consistently looking GWT forms on UI binder for each different GWT Views. Since you worked on it, would love to see if you have further explanation on the example I gave how can this

Re: GWT UI widgets auto-alignment inside different Panels proper solution needed.

2013-04-01 Thread Subhrajyoti Moitra
i had sorted these issues by using http://gwtbootstrap.github.com/ Basically letting the CSS do the aligning. its dependent on your app of-course! HTH, Subhro. On Mon, Apr 1, 2013 at 8:04 PM, BM wrote: > We use GWT inside every other panels like VerticalPanel, HorizontalPanel, > DockLayoutP

GWT UI widgets auto-alignment inside different Panels proper solution needed.

2013-04-01 Thread BM
We use GWT inside every other panels like VerticalPanel, HorizontalPanel, DockLayoutPanel, etc. The thing I feel it is cumbersome in assigning alignment (both horizontal and vertical) for each elements in those panels. One way is : Hello Center The problem is that if we have severa

Re: clear browser cache automatically?

2013-04-01 Thread Jens
http://stackoverflow.com/questions/4274053/how-to-clear-cache-in-gwt -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@

Re: GWT Frame work

2013-04-01 Thread brec
This javadoc on Class Framehas a small example. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop

Re: gwt-unitCache

2013-04-01 Thread Magnus
Ok, thanks! -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to google-we

Re: clear browser cache automatically?

2013-04-01 Thread Magnus
Am Freitag, 29. März 2013 17:38:29 UTC+1 schrieb Tomek Kańka: > > Use filter to set headers for "*nocache*" files, which disallows caching. > Hi, I never used filters before. Could you please explain how to do this or point me to a tutorial? Thanks Magnus -- You received this message beca

compiling problem when using GWT.runAsync()

2013-04-01 Thread Rodrigue ...
Hi everybody I applied the idea of Mr. Thomas Broyer (you can find it on this link; https://gist.github.com/tbroyer/3038878). This is the first time I'm using the code splitting feature in GWT. Since I did it, I'm facing a strange gwt compiler error. The stacktrace is below (the line in Bold is ex

Re: Same text, different Signature with each execution

2013-04-01 Thread Janelastur
I respond myself. It was a problem with private key and public key. Thanks Jens for your support. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-w

GWT Frame work

2013-04-01 Thread Raghu rao
Hi, I am new to GWT. Pls let me know how to create Frames with sample code. Thanks in advance. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web

Re: Same text, different Signature with each execution

2013-04-01 Thread Manuel Alejandro Fernandez Casado
Hi Jens. I updated your JUnit with this method: private boolean verify(byte[] clearText, byte[] signature) throws Exception { signer.initVerify(keyPair.getPublic()); signer.update(clearText); return signer.verify(signature); } First argument i pass "Hello World!!!", and second the previ

StockWatcher tutorial: change of user.theme has no effect

2013-04-01 Thread brec
I am trying to follow the Changing the Themestep in the subject tutorial. The tutorial is a bit behind the example code, as within the delivered Stockwatcher.gwt.xml (downloaded 2012/03/31) the uncommented theme is "

Decoding complex JSON

2013-04-01 Thread sebastien . ribeil
Hi everybody, I want to read this kind of JSON with GWT: {"records": [{"names": {"John": ["50", "H", "US"], "Jack": ["50", "H", "US"]}, "style": "TR"}]} I use overlay for that. If I use that, I get "TR": public final native String getStyle() /*-{ return this.records[0].style;

Re: Same text, different Signature with each execution

2013-04-01 Thread Manuel Alejandro Fernandez Casado
Hi Jens. Thank you so much for your answer. I´ll take a look. El lunes, 1 de abril de 2013 01:50:56 UTC+2, Jens escribió: > > No idea. Only thing I would change is to explicitly use a Charset like > UTF-8 in String.getBytes() and probably inside Base64Utils.toBase64(). As > you only use JRE c