Re: UiBinder view inheritance troubles

2012-04-05 Thread Márcio Menezes
wrote: On 04/04/2012 09:32, Márcio Menezes wrote: I'm migrating all my views from the old style to @UiBinder based and I'm facing some troubles I used to have base views (Composite) in charge of adding common components, ie: EditModelBaseView is in charge of adding the save and cancel button

Re: UiBinder view inheritance troubles

2012-04-05 Thread Márcio Menezes
Hmm... not bad... Thanks a lot! :) On Thu, Apr 5, 2012 at 12:12 PM, Thomas Broyer t.bro...@gmail.com wrote: On Thursday, April 5, 2012 11:58:14 AM UTC+2, Márcio Menezes wrote: Hey, guys, thanks for the answers... Thomas, I think what u said is the cause of my problem. I have two ui.xml

UiBinder view inheritance troubles

2012-04-04 Thread Márcio Menezes
Hi all. I'm migrating all my views from the old style to @UiBinder based and I'm facing some troubles I used to have base views (Composite) in charge of adding common components, ie: EditModelBaseView is in charge of adding the save and cancel button, so that all the sub views will render those

Reading annotation values in runtime

2010-12-16 Thread Márcio Menezes
Hi, I have to implement an authorization mechanism where I should be able to define which fields in a view the user has access to: Read / Edit. The idea that I had was to put annotations on top of those fields saying the permission the user must have in order to interact with that field. To get

RequestBuilder POST + setHeader() = OPTIONS

2010-10-21 Thread Márcio Menezes
Hi!. Why does everytime I try to send a POST through RequestBuilder class and if I add some header into it, the method goes as an OPTIONS, instead of post? Has anyone experienced this? How can I work around it? Regards, Marcio -- You received this message because you are subscribed to the

Re: RequestBuilder POST + setHeader() = OPTIONS

2010-10-21 Thread Márcio Menezes
Márcio Menezes marcio@gmail.com Hi!. Why does everytime I try to send a POST through RequestBuilder class and if I add some header into it, the method goes as an OPTIONS, instead of post? Has anyone experienced this? How can I work around it? Regards, Marcio -- You received

Re: RequestBuilder POST + setHeader() = OPTIONS

2010-10-21 Thread Márcio Menezes
BTW... Browser Firefox 3.6 2010/10/21 Márcio Menezes marcio@gmail.com Ok... but it happens with ANY header. Even if I add Content-Type, application/x-www-form-urlencoded, as you suggested, it sends an OPTIONS method, instead of POST. On Thu, Oct 21, 2010 at 4:46 PM, Brett Thomas

JsonpRequestBuilder Timeout - GWT 2.0

2010-06-30 Thread Márcio Menezes
Hello! I'm trying to retrieve Json using JsonpRequestBuilder. When I use some external url, like this one http://search.yahooapis.com/ImageSearchService/V1/imageSearch?appid=YahooDemoquery=Madonnaoutput=json, everything works fine. But, when I try to fetch json from some server inside my network,