Re: Announcing GwtChosen 1.1.0!!

2012-10-27 Thread Jambi
thanks for this good work! I will definetly use those widgets in my next project! Am Donnerstag, 25. Oktober 2012 00:00:42 UTC+2 schrieb Julien Dramaix: Dear Community, I've just released GwtChosen 1.1.0. This release fix some bugs and bring two new enhancements : - possibility to

Re: GWT 2.5 GA is Here!

2012-10-27 Thread Илья Шадрин
Why you are not inroduce HTML5 Application cache support? пятница, 26 октября 2012 г., 2:14:29 UTC+4 пользователь unnurg написал: Hey all, We're excited to announce the GWT 2.5 Release! There will be an announcement soon on the GWT

Re: java.security.AccessControlException: access denied (java.lang.reflect.ReflectPermission suppressAccessChecks)

2012-10-27 Thread Wallace Peng
I also got this. is this resolved? On Friday, April 17, 2009 8:29:59 AM UTC-7, Rafael wrote: Hello i deployed an application wich was working perfectly on hosted mode on a Tomcat server and i was greeted by a lot of errors, which, in time, i discovered that they were security exceptions.

Re: gwt 2.5/PrecompressLinker useless with tomcat/jboss?

2012-10-27 Thread Joseph Lust
I'd like to second Jens' suggestion. I've been pushing all static, precompressed content to AWS CloudFront with the proper gzip headers. Then the app server (Tomcat) only handles RPC's and the root .html page. Using the AWS API's, scripting this deployment behavior has been quite simple to do.

Re: developers.google.com is down

2012-10-27 Thread Joseph Lust
Yep, sounds like the AppEngine outagehttp://googleappengine.blogspot.com/2012/10/about-todays-app-engine-outage.html. Kind of scary given the AWS cloud failurehttps://aws.amazon.com/message/680342/earlier this week. In the past (such as AWS in June http://aws.amazon.com/message/67457/) it

Re: Security considerations for GWT applications

2012-10-27 Thread Joseph Lust
FYI, I just setup a GWT webapp running on *Spring Security*. *Spring Security *covers much of the above and more: - Session Fixation prevention - Easy to enforce HTTPS channel filters to force parts of site to run on SSL - Facilities to persist (totally random) remember me tokens to

Re: Want to create a business website

2012-10-27 Thread Joseph Lust
Install the GWT Eclipse plugin, then use the new webapp wizard. It will get you a working app in a matter of seconds to start from. Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web

iframe event / gwt 2.5

2012-10-27 Thread Hugues Lara
Hi, I want to fire a popup when i click in an iFrame and get the target element in order to recover his id. Why the ONCLICK event don't work ? The ONLOAD work perfectly. Thanks Code Sample : package com.exp.client; import com.google.gwt.user.client.DOM; import

com.google.gwt.user.client.ui.Frame + Event handler / GWT 2.5

2012-10-27 Thread Hugues Lara
Hi, I am actually migrate a web application to GWT. In order to reuse the existing page i put them in frame. However i have to develop a new popup for one of them and i would like to let this popup attached to the main module. Before i was parsing the html to get the element and with RootPanel

Re: com.google.gwt.user.client.ui.Frame + Event handler / GWT 2.5

2012-10-27 Thread Fabio
Hi did you add a ClickHandler ? it doesnt seems to implements a clickHandler bye Il 27/10/2012 22:07, Hugues Lara ha scritto: Hi, I am actually migrate a web application to GWT. In order to reuse the existing page i put them in frame. However i have to develop a new popup for one of them

Re: com.google.gwt.user.client.ui.Frame + Event handler / GWT 2.5

2012-10-27 Thread Hugues Lara
Hi, My goal is to set gwt button inside my iFrame. If I do a RootPanel.get(my id).add(myButton) , it don't work because the id is inside the iFrame. I find out how get the Document of the iframe and get the Div Element but i still don't know how set a button on this div. Thanks, On Saturday,

Re: com.google.gwt.user.client.ui.Frame + Event handler / GWT 2.5

2012-10-27 Thread Fabio
No you can't do that, but you have to take this other way: extending our target, you want to add a Widget, because your button is a Widget, into a Document as javascript language provides. Infact you get a Document made by Elements. So I think you have to use the method appendChild where the

Re: com.google.gwt.user.client.ui.Frame + Event handler / GWT 2.5

2012-10-27 Thread Hugues Lara
To be honest i don't get it at all ... An other idea was to get the Document of the Iframe. That i got it , i even find the element i want by parsing the html. But i dunno how replace this Element by a GWT button attached to my main module ( I think it's necessary to show my popup ). Thanks,

Re: com.google.gwt.user.client.ui.Frame + Event handler / GWT 2.5

2012-10-27 Thread Fabio
Hi Lara you can not replace the element with your button becasue your Button is a Widget while the button that you want to put in there must be a ButtonElement why ? because the Widget are used by GWT to translate that code into javascript. Once translated in javascript work is done. In your

Re: com.google.gwt.user.client.ui.Frame + Event handler / GWT 2.5

2012-10-27 Thread Hugues Lara
So i should get my Document of my iframe. After i get my div element and to this div element i add a child and this child is a ButtonElement ... I can try that On Saturday, October 27, 2012 4:46:25 PM UTC-5, Fabio wrote: Hi Lara you can not replace the element with your button becasue your

Re: com.google.gwt.user.client.ui.Frame + Event handler / GWT 2.5

2012-10-27 Thread Fabio
EXACTLY get the Document, creaate a ButtonElement from the Document. But you must also create a ScriptElement and set the text of the function and then call click from the ButtonElement Il 27/10/2012 23:48, Hugues Lara ha scritto: So i should get my Document of my iframe. After i get my

Re: How to make ValueBoxEditorDecorator error message positionate to the right?

2012-10-27 Thread Benjamin Possolo
Add a style name to your decorator div element. i call mine textBoxDecorator then use the following css selectors: .textBoxDecorator div:first-child { float: right; } .textBoxDecorator div:last-child { float: left; } .textBoxDecorator::after { content: ; display:

Can't get Google Crawler to index my GWT-based site no matter what I do. Help!

2012-10-27 Thread Benjamin Possolo
I am unable to get my GWT-based site to be indexed by Google no matter what I do. My URLs all look like this: http://marketplace.styleguise.net/#!/home http://marketplace.styleguise.net/#!/new-listings http://marketplace.styleguise.net/#!/item/172001 http://marketplace.styleguise.net/#!/about

Re: com.google.gwt.user.client.ui.Frame + Event handler / GWT 2.5

2012-10-27 Thread Hugues
Just to let you know i tried something like that : The wrap work perfectly with an element of the current dom but with an element i get from the iframe it does not work Code sample : IFrameElement iframe = IFrameElement.as(this.getElement()); Document iframeDocument =

[gwt-contrib] Re: Thanks minichate! (issue1863803)

2012-10-27 Thread chris
Note that more advanced media queries are still borked: @media all and (max-width: 699px) and (min-width: 520px), (min-width: 1151px) { // ... } The above gets truncated to: @media all { } I haven't tracked down where the truncation is occurring -- a project for tonight, most likely!