Mixing Autobean with JSONP

2011-05-28 Thread karthik reddy
Can AutoBean used to bind the response of a JSONP request ?? I tried but with no success. For example: JsonpRequestBuilder jsonp = new JsonpRequestBuilder(); jsonp.requestObject(url, new AsyncCallback() { public void onFailure(Throwable throwable) { } public

Re: GWT OAuth libraries

2011-05-28 Thread othman El Moulat
I looked to this one and browsed the svn src code . but felt it doesn't have the sophistication of signpost. the src code is so simple that it made me suspicious if this project is really a serious oauth gwt library. On Sun, May 29, 2011 at 1:59 AM, Thomas Broyer wrote: > http://code.google.com/

Re: GWT OAuth libraries

2011-05-28 Thread Thomas Broyer
http://code.google.com/p/gwt-oauth2/ is the second result for a Google search for "gwt oauth", and all 6 project members a Googlers (which could mean the project is used in some Google product) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" gr

GWT OAuth libraries

2011-05-28 Thread othman
Hello all, these days i've been playing with OAuth in java. I tried http://code.google.com/p/oauth-signpost/ and it worked well on the java server side. I tried integrating signpost with a GWT app but found i have to delegate all OAuth work to servlets in the server side . I'm wondering if we can i

Re: Delete Annotatona in client side

2011-05-28 Thread Juan Pablo Gardella
I use JPA annotation without problem since GWT 2.0. What version of GWT are you using? 2011/5/28 Adolfo Panizo Touzon > If I have a POJO class with JPA annotations (for example), anyone know how > to remove the annotations to instantiate an object on the client side?? > > Anyone know how to rem

Re: GWT CellList Drag and Drop

2011-05-28 Thread Julien Dramaix
Could you explain more what you are looking for ? What do you mean by "within CellList" ? On May 28, 2:11 pm, Jee wrote: > Hi Julien, > > thanks. > Its great to see your reply. CellList is supporting drag and drop. > but i am looking within CellList whether drag and drop is supporting > or not. >

Re: SuggestionBox events

2011-05-28 Thread Ilya Ilievski
Actually I already have defined custom SuggestOracle, but how can I access the suggestionBox in the requestSuggestions method so I can change it's background to show the gif?I don't know how to hide the loading gif in the callback either. Can you please explain a little more to me? -- You rece

Spring roo error in expenses sample

2011-05-28 Thread Surya
Hi, I'm trying to create a sample gwt project using roo from the link: http://code.google.com/webtoolkit/doc/latest/tutorial/roo-sts.html but When I try to run "script ..\samples\expenses.roo" in Spring roo 1.1.4 I'm getting the following error (full log is attached below). "GWT module's gwt.xml

Re: SuggestionBox events

2011-05-28 Thread jhulford
Not that I know of by default, but you can pretty easily define your own SuggestOracle (either by implementing your own or extending the default MultiWord one) and override the requestSuggestions method to shows the loading gif when invoked and then wrap the Callback passed into that with your own

Re: Global event handler

2011-05-28 Thread John Ho
Have you taken a look at the static Event.addNativePreviewHandler method? Example: Event.addNativePreviewHandler(new Event.NativePreviewHandler() { @Override public void onPreviewNativeEvent(NativePreviewEvent event) { switch (event.getTypeInt()) { case Event.ONKEYDOWN: int keyCode = event.getN

Re: GWT Designer was not able to show the GUI...

2011-05-28 Thread Eric Clayberg
Did GWT Designer actually crash (e.g., shut down the editor window or Eclipse itself) or did it just show you an error? Those are two very different things. Not being able to "show the GUI" does not imply a crash at all. Depending on what you are editing and how you have your project and OS configu

SuggestionBox events

2011-05-28 Thread Ilya Ilievski
Hi, I want to know is it possible to know when the suggestion list from the server has returned? I want to display loading gif when then user types in a key and hide it when the suggestions are shown? Is it some event fired when the suggestions are returned from the server, that I can listen to

Re: HTML widget sometimes doesn't render 3rd party Javascript widget

2011-05-28 Thread Qiang Ma
Thanks Paul. Go to the Frame is not the best option. For example, if the 3rd party javascript has popup window, it will be clipped within the Frame size. So I am still struggling with just using HTML widget. I found that it could all be the java script not loading when the HTML widget is rendered.

Re: GWT CellList Drag and Drop

2011-05-28 Thread Jee
Hi Julien, thanks. Its great to see your reply. CellList is supporting drag and drop. but i am looking within CellList whether drag and drop is supporting or not. I tried to get about it, but i still failed. Please suggest on this. Thanks Jee On May 27, 6:47 pm, Julien Dramaix wrote: > You can

Delete Annotatona in client side

2011-05-28 Thread Adolfo Panizo Touzon
If I have a POJO class with JPA annotations (for example), anyone know how to remove the annotations to instantiate an object on the client side?? Anyone know how to remove the annotations to instantiate an object on the client side So far I have used the library of gwt-ent but I guess that gwt m

Pop up Panel not working properly

2011-05-28 Thread Juhi Bhatia
Hi, I am trying to show a Grid in a popup panel through uibinder. but the popup panel never shows up. This is the popup.ui.xml file -

Re: HTML widget sometimes doesn't render 3rd party Javascript widget

2011-05-28 Thread Paul Stockley
You can hide the border on IE with a JSNI call. private native void hideIFrameBorder(Element iframeEl) /*-{ iframeEl['frameBorder'] = '0'; }-*/; private native void reloadIFrame(Element iframeEl) /*-{ iframeEl.contentWindow.location.reload(true); }-*/; I also add

GWT Designer was not able to show the GUI...

2011-05-28 Thread Bob
New to GWT on mac osx using eclipse I have now gone through two tutorials (Stockwatcher and Login Manager) for GWT Designer. In both tutorials, GWT Designer crashed without warning with the following: GWT Designer was not able to show the GUI... I have googled the error, without much

Re: What is the difference between GWT Designer and Windows Builder Pro?

2011-05-28 Thread Bob
Perfect answer, thanks again! -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegro

Re: StockWatcher javascript compile does not open browser

2011-05-28 Thread Bob
Thanks...yes, I am using gwt 2.3, but yes I was doing the gwt 1.6 stockwatcher tutorial...dumb...thanks for clearing this up!! -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@goo

Re: HTML widget sometimes doesn't render 3rd party Javascript widget

2011-05-28 Thread Qiang Ma
I tried to use a Frame widget to include a html page just with the following banner and it shows up on all browsers. But it doesn't look nice, e.g. it has an extra border on IE. Just wondering why HTML widget can't show the banner correctly, as simple as following: HTML html = new HTML(""); somePa

Re: A gwt-sample. Integrate Spring, JPA2.

2011-05-28 Thread ricu
Hi Juan, Do you know how to manage a session expired situation when using spring security? The problem is that HTML code is showing in a alert window every time the spring tries to redirect to the login page. I don't know how to solve this problem without parsing of the error message and I'm not s