Re: IntelliJ

2009-12-06 Thread Matt Raible
Here's a sample application that uses GWT 1.7.1 and the Maven GWT Plugin. http://static.raibledesigns.com/downloads/gwt-oauth-1.3.zip You should be able to run mvn idea:idea to create IntelliJ project files. Hope this helps, Matt On Dec 5, 9:13 pm, wil.pannell wil.pann...@pepsiamericas.com

Re: Google Web Toolkit 2.0 RC1 Now Available

2009-11-17 Thread Matt Raible
Is anyone working on getting this uploaded to Maven's Central repository? Thanks, Matt On Nov 17, 2:17 pm, Bruce Johnson br...@google.com wrote: Hi folks! GWT 2.0 RC1 is now ready for you to try. The full documentation is still very much a work in progress, but you can at least start trying

Re: When will 1.7.1 be released?

2009-09-24 Thread Matt Raible
GWT developers - is there anything I can do to assist in getting this release into the central Maven repository? I spoke with the Maven guys and they suggested you start deploying to oss.sonatype.org as part of the release process. Instructions are available at the following URL:

Testing MVP Applications when using Overlay Types

2009-09-23 Thread Matt Raible
Hello all, I've recently converted my GWT application to use MVP, specifically using the gwt-presenter project. I'm also using Overlay Types and RequestBuilder to talk to JSON-based services on the backend. Since Overlay Types use JSNI, it's not possible to do any JSON parsing in unit tests. The

Is it possible to use SOYC on a 1.6 application?

2009-06-23 Thread Matt Raible
I have a 1.6 application and I'd like to learn it's story of compile (SOYC). Is it possible to do this? I've successfully checked out and built the latest trunk, I'm just wondering if it's possible to use this to compile my project and generate reports? Thanks, Matt

OAuth function works in JS, but not in JSNI

2009-06-16 Thread Matt Raible
I'm trying to convert the makeSignedRequest function on the following page into a JSNI method. http://paul.donnelly.org/2008/10/31/2-legged-oauth-javascript-function-for-yql/ If I put the raw JS in my HTML page and call it with $wnd.makeSignedRequest(), everything works fine. However, if I move

Re: SuggestBox with Facebook-style Autocomplete?

2009-06-08 Thread Matt Raible
enhanced suggestbox which is code.google.com/p/ kiyaa and you can look at the related commercial project clarityaccounting which is quite impressive for a demo of how they work. I am not sure if the same information applies to 1.6 as we haven't upgraded yet. Joe On May 29, 10:45 am, Matt Raible

SuggestBox with Facebook-style Autocomplete?

2009-05-28 Thread Matt Raible
I'm looking for a GWT-based autocompleter that allows for a Facebook- style presentation of the chosen item. I was able to get SuggestBox to select multiple (comma-delimited) values using the following tutorial: http://ljvjonok.blogspot.com/2008/10/gwt-suggestbox-how-to-make-multiple.html

Drag and Drop in a FlexTable

2009-05-01 Thread Matt Raible
I'm trying to implement a feature that allows users to drag-n-drop rows in a table. Has anyone done this with a FlexTable? Thanks, Matt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

GWTMockUtilities and History

2009-02-17 Thread Matt Raible
I'm trying to use GWTMockUtilities in my project. I've posted this question on the GXT forums[1], but also wanted to post it here to see if anyone knows of a solution. Here's my test: @Override public void setUp() { GWTMockUtilities.disarm(); galleryController = new

Re: Evaling scripts in a JSNI method

2009-02-12 Thread Matt Raible
need to do that explicitly. -Jeff On Feb 12, 2:23 pm, Matt Raible mrai...@gmail.com wrote: I'm trying to integrate analytics into my GWT application. To do this, I'm calling a service that returns a String of HTML that needs to be parsed and eval'ed. The following seems to work to eval

Re: Adding a SWF File with GWT2SWF

2009-02-12 Thread Matt Raible
anyone else that runs into a similar issue. Matt On Feb 9, 4:08 am, Matt Raible mrai...@gmail.com wrote: I have a Flash widget that I'm trying to add to my GWT application. I've successfully used jQuery on a static page to embed this widget: script type=text/javascript language=javascript

Re: Evaling scripts in a JSNI method

2009-02-12 Thread Matt Raible
On Feb 12, 2009, at 4:17 PM, jdwyah wrote: js only I guess you could do an Ajax.Request, but in JSNI you don't have Prototype.. I dunno, I feel like you're descending down the rabbit hole. I wonder if there's another approach. -jdwyah On Feb 12, 3:56 pm, Matt Raible mrai

Re: Evaling scripts in a JSNI method

2009-02-12 Thread Matt Raible
'); script.setAttribute(src, src); $doc.getElementsByTagName('body')[0].appendChild (script); } else { eval(scripts[i].innerHTML); } } }-*/; On Feb 12, 11:05 pm, Matt Raible mrai...@gmail.com wrote: If I'm in JSNI

Adding a SWF File with GWT2SWF

2009-02-09 Thread Matt Raible
I have a Flash widget that I'm trying to add to my GWT application. I've successfully used jQuery on a static page to embed this widget: script type=text/javascript language=javascript jQuery(document).ready(function($) { $('#flash').flash( { src: '/flash/ImageGallery.swf', width: 964, height:

Code Coverage with EclEmma

2009-02-03 Thread Matt Raible
I'm trying to get code coverage support for my GWT project. AFAICT, I can't use anything from Maven or Ant, I have to use the EclEmma plugin as described in the following issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=779 I'm using Eclipse 3.3 with the latest version of