Re: chrome 53 freezes my GWT 2.7 app

2016-10-26 Thread Matt Sutterlin
I was actually about to open a new topic on this exact issue till i found this. We have a rather gwt large app, where we are at the point of setting

Any JSON library that works in both GWT and non-GWT environments?

2016-02-04 Thread Matt Campbell
that works in both GWT and non-GWT environments? I see that GWT has its own JSON package, but that won't work for the other platforms. And a quick look at Gson and Jackson shows that they depend a lot on reflection, which GWT doesn't support. Thanks, Matt -- You received this message

Re: What is planned release date for GWT 2.8 (with lambdas) ?

2015-08-17 Thread Matt McHenry
I'll report a bit of data: We have an app that uses GWT only for "headless" stuff (it's part of a larger Angular application). We have about 142k lines of GWT code. We recently built GWT from the tip of master (541858e0), and saw no issues in upgrading to that from 2.7.0. As we've started us

Re: GWT 2.7.0 RC1 available

2014-10-30 Thread Matt Wallis
On 30/10/2014 16:38, Matt Wallis wrote: However, if I add a new source file, it is not found by incremental compilation. Update: Now I can't repeat this, having added another new source file. -- You received this message because you are subscribed to the Google Groups "Google W

Re: GWT 2.7.0 RC1 available

2014-10-30 Thread Matt Wallis
the benefits of incremental compilation. Is this to be expected, or does it indicate that I don't have things configured properly? If this is the expected/current behaviour, then is there a better work-around (that does not require 2 full recompilations)? Best regards, Matt. -- You received

Reskinning a GWT application that uses ClientBundles and CssResources

2014-09-18 Thread matt tate
rules that can reap the benefits of LESS or SASS? Thanks for your time. Cheers, MAtt -- 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-

Facebook canvas application integration

2014-05-11 Thread Matt G
Hi, What would be the way to create a facebook canvas app using gwt? I'd like to be able to make regular facebook calls like get friends I assume it would be using their javascript sdk somehow. Everything google gives me about this seems to be old (2009-2012) Thanks -- You received this mess

Re: Jetty 7

2013-09-14 Thread Matt Hauck
Sweet. =) -- Matt Hauck On Saturday, September 14, 2013 at 3:53 AM, Thomas Broyer wrote: > > > On Friday, September 13, 2013 10:18:20 PM UTC+2, Matt Hauck wrote: > > It's been two years+ since this answer and gwt is still on jetty 6. Is this > > in plan yet

Re: Jetty 7

2013-09-14 Thread Matt Hauck
I agree that a servlet that cares whether it runs on jetty vs. tomcat is suspect and doing something wrong. However, there are tangible differences between jetty 6 and the years that have gone on since then: i.e. updated servlet APIs. The fact that jetty 6 is stuck and an old servlet api is a s

How to get Map InfoWindow Scrollbar to show

2013-07-02 Thread Matt Nolan
I'm using java for a map application, and I have a rather long string to be shown in an infowindow. The window that displays overflows and overlays the map while the infowindow is open. I'm wondering how I can add a vertical scrollbar to the infowindow. -- You received this message because y

Re: GWT listbox not working with single click.

2013-05-01 Thread Matt Horam
I'm having the same issue. Did you find a solution? On Friday, August 31, 2012 7:19:40 AM UTC+10, Bobby wrote: > > When I click on the listbox in IE it doesnt open for the single click.It > works fine in Chrome. > > Please help with any solution for this problem > -- You received this message b

Canvas drawn objects mouse events

2012-11-29 Thread Matt Fair
speed doing it this way. Is there a way to add a mouseMoveHandler directly to the rectangle? Thanks, Matt -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d

Re: ScrollPanel inside layer of LayoutPanel

2011-12-07 Thread Matt S
Aidan O'Kelly writes: > > .. I see why this can't work now.. The child > Widget of ScrollPanel needs an explicit size. Which kinda begs the > question, why does ScrollPanel implement ProvidesResize?! > You stated you could see why it won't work, but did you figure out a suitable solution? I hav

Click events with UIBinder

2011-07-19 Thread Matt
I am trying to add events to a Button using the UiBinder, but nothing is happening when I click the Button. Here is my code: Login.ui.xml: test Login.java: package com.company.client.view; import com.google.gwt.core.client.GWT; import com.google.gwt.event.dom

$wnd.Array()

2011-07-12 Thread Matt Curry
always wraps the object in a new array. Does anyone have any suggestions? Thank you very much for your help. Matt Curry -- 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-w

Re: SafeHtmlUtils on the server side

2011-03-29 Thread Matt
I am just standing on principle. Thanks for your help. --Matt-- On Mar 25, 12:35 pm, Juan Pablo Gardella wrote: > I suppose you need some class in the server side. Put gwt-user.jar in server > side and test > > 2011/3/25 Matt > > > > > > > > > I am tryin

SafeHtmlUtils on the server side

2011-03-25 Thread Matt
I am trying to use the SafeHtmlUtils class on the server side to make sure some HTML I am sending back to the client side is placed in a SafeHtml object before it is returned. I am assuming it can be used on the server side as its package name is com.google.gwt.safehtml.shared and the class is insi

Re: RequestFactory entity proxies can't be cloned.

2010-12-21 Thread Matt Moriarity
I can kind of see how your proposed solution would work, and I guess that could be done if necessary. I was trying to use separate request contexts, and got the aforementioned crossing streams error, but I was editing the whole document. The solution you suggest is hardly ideal though, so I'm w

RequestFactory entity proxies can't be cloned.

2010-12-21 Thread Matt Moriarity
I posted this in gwt-contributors but I feel this might be the more appropriate group. I'm attempting to switch to using RequestFactory instead of GWT-RPC and manually creating DTOs. It's been going pretty well, except I've hit one use-case that is just a brick wall. I have a panel that is an

Re: Idea of RequestFactory

2010-12-21 Thread Matt Moriarity
You could add the with("address") to the findAll call: requestFactory.personRequest().findAll().with("address").fire(...); -- 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-tool...@googlegrou

Re: GWT 2.1.1 RequestFactory Strange Exception

2010-12-21 Thread Matt Moriarity
@ProxyFor(value = Person.class, locator = PersonLocator.class) then having a PersonLocator which implements Locator would fix this for you. But in order to get your static service methods (besides just the find method), you need a ServiceLocator for your service: @Service(value = PersonService

Re: To GWT or Not to GWT

2010-12-17 Thread Matt Hill
I don't understand the discussion of widgets here because GWT is clearly not designed to be used for multiple embedded widgets on the same page. You can do it, but it'll require using some lesser-known features and maybe even hacks to get it to run as get the initial download for all of the gad

Re: How to load data BEFORE showing view/presenter?

2010-12-01 Thread Matt H
Anyone? Surely it's simple enough to do? On Dec 1, 1:27 am, Matt H wrote: > Hi. > > If you poke around some of Google's GWT apps, you'll find that when > you click on anything which requires more data to be loaded, that a > 'loading' sign is displ

How to load data BEFORE showing view/presenter?

2010-12-01 Thread Matt H
Hi. If you poke around some of Google's GWT apps, you'll find that when you click on anything which requires more data to be loaded, that a 'loading' sign is displayed at the top of the screen, and while loading, it stays on the current view, and then when the data for the next view has been downl

Re: TabLayoutPanel does not listen to width

2010-11-30 Thread Matt H
Yes, the UI widgets are all terrible. Google Closure has much better widgets. On Nov 30, 10:10 am, Baloe wrote: > Hi all, > > I'm using a tabLayoutPanel with three tabs. However, the total width > is now dynamicly created by the width of the content of the current > tab. But, my first and second

GWT Integration Test with Spring

2010-08-25 Thread Matt
ation test mode yet. Best regards, Matt -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+uns

Re: Introducing Guit: a next generation gwt framework

2010-08-19 Thread Matt H
Well, it's made with GWT of course! On Aug 19, 12:18 am, Thomas Broyer wrote: > On 18 août, 15:17, Joe Hudson wrote: > > > Hi Gal, > > > Please consider registering this project with GWT Marketplace > > (http://www.gwtmarketplace.com). > > I'm hoping this website will help GWT > > developers fi

Re: Wave Demise.........sad day for GWT

2010-08-19 Thread Matt H
GWT is used in LOTS of Google products nowadays, and I'd bet that they're keen to use it more. They clearly love it, so I reckon it's here to stay. On Aug 6, 7:24 pm, Arthur Kalmenson wrote: > I think it's important to remember that GWT was used to rebuild the > AdWords UI, which is the primary d

Re: Is Google a quitter ... Wave is dead

2010-08-19 Thread Matt H
The new Orkut is made with GWT as are many other Google products. I'd say it's extremely safe. On Aug 10, 4:39 pm, rudolf michael wrote: > hey i have paid a license for that exe but didn't use it much as most of the > website had dynamic UI Generation ;)...so i guess by now it is LGPL ? > > > > O

Web server magic?

2010-06-17 Thread Matt
When I run a GWT application in eclipse, what is serving the web page? I haven't installed a web server, yet something is answering requests on port when I run the application through eclipse. Does the eclipse plugin include a web server? I'm having problems loading pages now... says: HTTP

Re: TabLayoutPanel with scroll buttons

2010-05-31 Thread Matt
Hi, you won't be able to use this custom widget directly within an UiBinder file due to this issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=4342. You should be able to wrap it into a Composite and then reference that Composite in your UiBinder file though. Hth, Matt

Limit generator invocation count

2010-05-25 Thread Matt
build time - is there any way to only invoke the generator once, or to somehow cache the generated code so speed things up? Thanks for any help, Matt -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send emai

Re: DockLayoutPanel Sample Code No Style Issue

2010-05-24 Thread Matt
I'm really surprised no one else has chimed in on this. I was thinking it should be just as simple as a missing CSS. Any suggestions are greatly appreciated. -m On May 21, 11:42 am, Matt wrote: > Yep, I have at the top of my html file.. > > On May 21, 11:40 am,

Re: DockLayoutPanel Sample Code No Style Issue

2010-05-21 Thread Matt
Yep, I have at the top of my html file.. On May 21, 11:40 am, kozura wrote: > You have at the top of your HTML file to set the > browser to standards mode? > > On May 21, 10:01 am, Matt wrote: > > > > > > > I tried the DockLayoutCode which is presented in t

DockLayoutPanel Sample Code No Style Issue

2010-05-21 Thread Matt
I tried the DockLayoutCode which is presented in the Javadoc: http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/DockLayoutPanel.html DockLayoutPanel p = new DockLayoutPanel(Unit.EM); p.addNorth(new HTML("header"), 2); p.addSouth(new HTML("footer"), 2); p.addWest

Re: accents problem

2010-05-18 Thread Matt
ing when reading the file needs to match the encoding of the file itself, you can specify that in your InputStreamReader's (or however you read the file) constructor. 3) The encoding of data coming from the server needs to match the content-type meta tag in your app's HTML page Hth, M

Re: GWT, SmartGWT, Google Visualization Help

2010-05-12 Thread Matt
I've solved my problem but am wondering if anyone else is doing similar development.. On May 12, 2:10 pm, Matt wrote: > I'm trying to draw a Google Column Chart into SmartGWT draggable > window.  I can draw the chart correctly.  I can draw the window > correctly.  I am

GWT, SmartGWT, Google Visualization Help

2010-05-12 Thread Matt
I'm trying to draw a Google Column Chart into SmartGWT draggable window. I can draw the chart correctly. I can draw the window correctly. I am just having trouble drawing the chart into the window. Does anyone have any examples or tutorials of doing this? Thanks! -m -- You received this mess

TabLayoutPanel with scroll buttons

2010-05-06 Thread Matt
that extends TabLayoutPanel to show scroll buttons if necessary. Cheers, Matt package com.gwtscrolledtablayoutpanel.ui; import com.google.gwt.dom.client.Style.Unit; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; i

minimizing latency

2010-04-23 Thread Matt Rosencrantz
Method(...normal method params..., RPCResponder responder) { ... Do lots of time consuming work ... responder.respond(result); ... Do lots more time consuming work... } Thanks, Matt -- You received this message because you are subscribed to the Google Groups

Re: MVP + UiBinder, thoughts?

2010-01-29 Thread Matt Read
Hi, could you possible re-cap on what problem this approach solves? I'm using UIBinder with mvp-presenter without inverting the dependencies in this way without any problems so I'm wondering what I'm missing. Thanks, Matt. 2010/1/29 István Szoboszlai > Hello Bryce, >

Re: GWT support for Grails/Groovy domain objects

2010-01-27 Thread Matt Moriarity
I read that GWT 2.0 supports serializing enhanced objects from JDO or JPA. So if they are hibernate objects, wouldn't the JPA support cover that? On Jan 27, 1:30 am, Jan Ehrhardt wrote: > The problem is the GWT RPC's serialization, which can't work with objects > created by hibernate. You can use

Re: OOPHM is slow

2010-01-19 Thread Matt Moriarity
But the JS wrappers wouldn't have to go through the rather slow GWT compiler, so in the case of development mode, they would certainly start up faster. On Jan 18, 11:51 am, Arthur Kalmenson wrote: > JS wrappers won't benefit from the GWT compiler, so they would > theoretically be slower. Have you

Re: Listening to Keyboard Events

2010-01-19 Thread Matt Moriarity
Look at Event.addNativePreviewHandler for global, and the various keyboard handlers for specific panels. On Jan 19, 6:46 am, JavaDoc wrote: > Hi, > > I have a requirement wherein i want my app to listen to keyboard > events (example, user pressing the 'Shift' key) > How do I go about implementing

Re: SuggestBox does not have an addClickHandler

2010-01-18 Thread Matt Moriarity
I don't think you will be able to use @UiHandler in this case. You will have to do it the old-fashioned way and do mySearchBox.getTextBox ().addClickHandler(...) On Jan 16, 8:39 am, Alexander wrote: > Hi there, > > as stated at [1] and [2] it is easily possible to add different > handlers using t

Re: GWT 2.0 runAsync code works fine in development mode but fails in normal mode

2010-01-15 Thread Matt Moriarity
I'm not sure about this, but I would guess that GWT doesn't actually do any code-splitting when in development mode because there isn't much point. It's really only useful when you compile. On Jan 14, 12:07 pm, mably wrote: > Oops, sorry...  It's asynchronous, so my list object is most probably >

Re: Development mode - refresh is not enough to see my changes!

2010-01-13 Thread Matt Moriarity
Depends how you are using your stylesheet. I had these problems when I was simply using a link element on the main HTML page. However, my problems went away when I switched to using ClientBundle and CssResource. On Jan 13, 1:12 pm, Stine Søndergaard wrote: > Would be so nice to know if I am the o

Re: avoid the use of ActiveX-Objects

2010-01-13 Thread Matt Moriarity
GWT depends on ActiveX in IE6 as it is the only way to get an XMLHttpRequest object. There is no way for GWT to work in IE6 without ActiveX. IE7 allows a different way to get this object, but IE6 does not. On Jan 12, 10:23 am, Sellfisch wrote: > Hi there, > > we are writing an GWT Business Applic

Re: Gilead 1.3

2010-01-13 Thread Matt Moriarity
Ok that is simply not true. There are cases where Hibernate may be the right choice but there also plenty of times where something else would be better. Hibernate is not the only ORM solution for Java. I, for instance, tend to use iBATIS. It's helpful to have control over the SQL that is being used

Re: DockLayoutPanel sample code

2010-01-13 Thread Matt Moriarity
If you are using the new layout panels, you should be using standards mode and not quirks mode. On Jan 13, 4:48 am, Stine Søndergaard wrote: > The most frustrating is that all this CSS invention seems so obvious to > everybody else!! ;D -- You received this message because you are subscribed to

Re: UiBinding...

2010-01-13 Thread Matt Moriarity
It should be styleName when the element is a GWT component. It should be class when the element is an HTML tag. On Jan 13, 7:40 am, Stine Søndergaard wrote: > ... well, apparently it has to be styleName="{style.test}" ... that is not > what I got from > > http://code.google.com/intl/da-DK/webtool

Re: Quick question about gwtc

2010-01-08 Thread Matt Moriarity
The GWT compiler translates Java sources to JavaScript sources. This allows for things like JSNI, which would be lost in the bytecode, as well as allowing for greater optimization possibilities On Jan 8, 7:14 am, Chris Lercher wrote: > Hi, > > quick question: What exactly does gwtc translate? Doe

Re: GWT 2.0 w/ IntelliJ IDEA 7.0.5

2010-01-06 Thread Matt Moriarity
If you really want decent IntelliJ GWT support, you should probably upgrade to IDEA 9.0, which added explicit support for GWT 2.0 and GWT 1.7. On Jan 5, 4:17 am, Steve Sinai wrote: > Up until now I've used Eclipse for writing occasional GWT apps, but > I'm not an Eclipse expert and am much more c

Re: Should DecoratorPanel implement ProvidesResize?

2010-01-06 Thread Matt Moriarity
Perhaps we need an equivalent DecoratorLayoutPanel. Only LayoutPanels seem to implement ProvidesResize. On Jan 5, 12:13 pm, huherto wrote: > I am trying to find a solution for > this.http://groups.google.com/group/google-web-toolkit/browse_thread/threa... > > But I am wondering if the DecoratorP

Re: Convenience callback method

2009-12-31 Thread Matt Moriarity
You need your action class to implement IsSerializable. Also make sure you give it a no-args constructor. On Dec 30, 8:15 pm, bhomass wrote: > I am trying out the rpc structure given in the seminar. I get an error > > 20:42:08.171 [ERROR] [rts] > com.jcalc.webclient.client.spreadsheet.rpc.action.

GWT Plugin and External JARs

2009-12-31 Thread Matt
When it will be deployed to out Tomcat server, some of the JARs conatining code that will be used in the GWT app will be located outside the webapp, and loaded into Tomcat using its shared loader. How do I get this to work in the GWT Eclipse plug-in? Simply adding them to the project's Build Path

Re: GWT 2/Eclipse Project References

2009-12-30 Thread Matt
Google Plugin for Eclipse 3.5, version 1.2.v200912062003 running Google Web Toolkit SDK 2.0.0.v2000912062003 On Dec 29, 1:11 pm, Murat Doner wrote: >  Which plug-in do you use? > > > > On Fri, Dec 11, 2009 at 1:49 PM, Graham wrote: > > I've successfully upgraded to GWT 2.0 using the GWT Eclipse

Re: GWT 2/Eclipse Project References

2009-12-29 Thread Matt
e 'Referenced Libraries' of the GWT app, but a GWT compilation still results in "No source code is available for type ..." On Dec 29, 12:55 pm, olivier nouguier wrote: > Hi >  The java *source* folder must be added to the classpath. > HIH > > > > > >

Re: GWT 2/Eclipse Project References

2009-12-29 Thread Matt
I have the situation where the POJOs which are used within the EntryPoint (i.e. compiled to Javascript) are located in another Eclipse project. If I configure the GWT project to refer to the other project the Java compiles okay, but when attempting to compile to Javascript it complains "No source

Re: Hyperlink ClickHandler help

2009-12-24 Thread Matt Moriarity
Perhaps you should be using an Anchor widget instead of a Hyperlink. If you still need to link in with the history mechanism, you can have your click handler call History.newItem On Dec 23, 9:05 am, Peter Ondruska wrote: > Dear all, > > In GWT 2.0 Hyperlink.addClickHandler is deprecated and I sho

Re: SuggestBox MVP problem

2009-12-21 Thread Matt Moriarity
The way I'm doing it will be to have the dependency injection framework create a SuggestOracle. Then have the view be injected with that oracle: @Inject MyView(MySuggestOracle oracle) { this.suggestBox = new SuggestBox(oracle); ... } Seems like a fairly simple solution, and does not require

Re: SuggestBox MVP problem

2009-12-21 Thread Matt Moriarity
The way I was planning on handling this is allowing dependency injection (GIN) to create the oracle and inject that into the view's constructor. On Dec 21, 7:03 am, FKereki wrote: > Hi! Trying to work with a SuggestBox field and MVP, I found a problem. > You can getSuggestOracle(...) but you cann

Re: Global keyboard handling

2009-12-18 Thread Matt Moriarity
See Event.addNativePreviewHandler (or something like that). This will capture every DOM event. You can handle your keyboard events there. On Dec 13, 4:47 pm, Dorinel wrote: > How should I handle global keyboard event (for a game) it seems it's > possible as there is a game, Hornet Blast: > > http

Re: Best Practice for ImageResource in ClientBundle

2009-12-18 Thread Matt Moriarity
This is how I'm doing it. On Dec 9, 10:36 am, Eric Landry wrote: > Hi, > > I'm trying to get my app working with GWT2 and was wondering if > there's anything wrong about the following code: > > public interface MyImages extends ClientBundle { >     public static final MyImages INSTANCE = GWT.crea

Re: UIBinder and themes?

2009-12-18 Thread Matt Moriarity
The new layout panels don't have any visual styling. You can manually apply CSS to the splitter bar, although I'm not sure off the top of my head what the correct class name is. Firebug or Safari/Chrome's dev tools should let you find out. On Dec 13, 4:03 am, Ben Harris wrote: > Hi, > > I'm start

Non Property file resource bundles

2009-12-15 Thread Matt
We currently have an 1i8n framework based on java.util.ResourceBundle which delegates down to a database, rather then property files. Is there a way to get GWT to use class-based java.util.ResourceBundles? Thanks. -- You received this message because you are subscribed to the Google Groups "Go

Programatic definition of locale

2009-12-15 Thread Matt
The documentation sepcifies that the locale is defined by GWT Property, i.e. or by paramater http://www.example.org/myapp.html?locale=fr_CA I would like to have the required locale as a propery of the logged in user, and that hat tell the app what locale to use. So is there any way to do this

Class-based ResourceBundles and GWT

2009-12-15 Thread Matt
we currently have *class* based ResourceBundles, where we extend the java.util.ResourceBundle and have the implementation load it's data from a database. Does GWT support this? And if so, how do you do it? Many thanks. Matt -- You received this message because you are subscribed to the G

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" w

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 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 t

Re: Too much is happening (the events are crowding the bus)?

2009-11-17 Thread Matt Bishop
Your simple, many-classes design is actually a Good Thing. Event objects should really only do one specific step in the workflow of your application. Lots of small, discrete and completely specific action classes is far preferrable to a smaller set of classes that contain if-then-else trees and s

Recent browser-specific change to JSONObject

2009-11-17 Thread Matt Bishop
I am referring to this recent checkin: http://code.google.com/p/google-web-toolkit/source/diff?spec=svn6936&r=6936&format=side&path=/releases/2.0/user/src/com/google/gwt/json/client/JSONObject.java The checkin comment states the change is needed for Chrome, but it is checked into the main JSONObj

Re: Incubator GWTCanvas - theoretically faster to Clear() between draws?

2009-11-03 Thread Matt Bishop
I would be surprised if clear() was slow. Generally it is a good idea to clear first, especially on IE, which has to convert the canvas calls to VML. clear() blows away the current VML doc, while redrawing may append to the existing. As always, test your idea and let the real world usage decide

3rd party widget pluggable interface

2009-09-29 Thread Matt
Hi, I was wondering if it's possible at all, or if anyone has suggestions on best practices for plugging additional widgets into a GWT app after compile? We have a fat client app that has a pretty large set of functionality that we're porting to GWT, but occasionally clients needs some specific

Re: When will 1.7.1 be released?

2009-09-24 Thread Matt Raible
://docs.sonatype.com/display/NX/OSS+Repository+Hosting I'd be happy to assist in setting this up, but don't know if it's a good idea that some random developer deploys the artifacts vs. the official team. Cheers, Matt On Sep 23, 3:31 pm, Jim Douglas wrote: > http://googlewebtoolkit.bl

Re: Testing MVP Applications when using Overlay Types

2009-09-23 Thread Matt Raible
T)); models.add(model); } eventBus.fireEvent(new ConversationsLoadedEvent(models)); } }); Thanks, Matt [1] http://raibledesigns.com/rd/entry/json_parsing_with_javascript_overlay On Wed, Sep 23, 2009 at 1:36 PM, eguardiola wrote: > Read the "Updates for GWT 2.0

Testing MVP Applications when using Overlay Types

2009-09-23 Thread Matt Raible
of this issue on my blog[1]. Does anyone here have any suggestions on how I might go about solving this problem? Thanks, Matt [1] http://raibledesigns.com/rd/entry/building_gwt_applications_with_mvp --~--~-~--~~~---~--~~ You received this message because you a

NumberFormat.getPercentFormat()

2009-09-07 Thread matt
ind any reference to this problem. Has anyone else had similar problems? If so is there a nice workaround (I'm currently using a decorator on the NumberFormat, but it's not particularly clean)? Thanks, Matt --~--~-~--~~~---~--~~ You received this messag

Multiple selection of TreeItems within a Tree

2009-08-20 Thread matt
Is there a way to do this? Like a click, then shift-click to select multiple TreeItems. I know you could add a checkbox to each TreeItem but a click/drag or click/shift-click would be nicer Thanks to anyone who knows. --~--~-~--~~~---~--~~ You received this m

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 a

OAuth function works in JS, but not in JSNI

2009-06-16 Thread Matt Raible
w how I might go about fixing this? Thanks, Matt P.S. For more context, I found the JSNI version on the following blog: http://www.sergimansilla.com/blog/?p=75 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "

Re: Rebind for Android/Webkit?

2009-06-11 Thread Matt Bishop
I think you have to specify for each if in your replace-with. Try: On Jun 10, 6:18 am, Evan Ruff wrote: > Hey guys, > > I'm trying to add some rebind parameters for an Android implementation > of my application and I just can't se

Re: SuggestBox with Facebook-style Autocomplete?

2009-06-08 Thread Matt Raible
t with the backspace key. If someone knows how to solve this, please let me know. Thanks, Matt On May 29, 2:03 am, Joe Cole wrote: > Hi Matt, > > We have one a similar thing for one of our applications, so it's > definitely possible. The left hand section of the suggest box provide

SuggestBox with Facebook-style Autocomplete?

2009-05-28 Thread Matt Raible
ng for, see the following jQuery Plugin. http://loopj.com/2009/04/25/jquery-plugin-tokenizing-autocomplete-text-entry/ Has anyone created such a widget for GWT? Thanks, Matt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Grou

Re: data exchange from gwt to flash and back

2009-05-28 Thread Matt Bishop
ash piece to call, and vice versa export a method from your actionscript for that same JS to call. FABridge looks like it has examples to help. Have fun! Matt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google

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&

Socket error with a CGI/Python/MYSQL back-end

2009-04-23 Thread Matt
s the python error that I get: : (2004, "Can't create TCP/ IP socket (10106)") Does anyone have any ideas? Thanks, matt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" grou

Re: Maven2 + Eclipse + GWT

2009-04-16 Thread Matt (AUS)
sample_web sample_ear sample_parent jpa/gwt/web/ear all extend the parent project. each project can be compiled individually and installed. thanks Matt. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web

Re: GWT 1.6 with Maven and build system questions/survey...

2009-04-16 Thread Matt Bishop
One of the big wins with Maven is the "rigid" directory structure, where source files of all stripes are in src/ and build outputs are in target/. It's good practice because it doesn't allow for intermingling source files and build files. The new GWT war/ dir next to src/ problematic because you

Re: Security Verification of normalized data submitted by client to server

2009-04-05 Thread Matt (AUS)
ds. The custom > converter and event listener feature it would appear could also be > leveraged to add custom verification/security logic as well. > > I notice gwt honors the transient keyword to prevent transfer of the > field via RPC - I'm wondering if this could be adapted

Re: How to retrieve data as byte[] in GWT from getImageData

2009-03-04 Thread Matt Bishop
According to the WhatWG spec for , getImageData() returns a CavasPixelArray, which is an array of bytes. What if you created a JavaScriptObject to represent it? Does GWT thunk to bytes across the JSNI boundary OK? I know it won't pass arrays of anything back, but individual elements maybe: import

Re: How to retrieve data as byte[] in GWT from getImageData

2009-03-03 Thread Matt Bishop
This is pretty cool. You should try converting the data in GWT instead of JSNI. It could go straight to bytes, or at least it could take advantage of GWT's StringBuilder speed. On Mar 1, 4:57 pm, Kevin Tarn wrote: > Forgot to tell: getImageData method convert raw data to a Windows DIB > format.

GWTMockUtilities and History

2009-02-17 Thread Matt Raible
and causes History.java to fail. Is it possible to use GWTMockUtilities with History.java? Thanks, Matt [1] http://extjs.com/forum/showthread.php?p=289942 [2] http://extjs.com/forum/showthread.php?p=289942#post289942 --~--~-~--~~~---~--~~ You received this message because you a

Re: Evaling scripts in a JSNI method

2009-02-12 Thread Matt Raible
Figured it out: /** * Evaluate scripts in an HTML document. Will eval both * and

Re: Evaling scripts in a JSNI method

2009-02-12 Thread Matt Raible
If I'm in JSNI, I don't have access to the RequestBuilder, do I? If so, do you have some example code? Some options I can think of: 1) Parse the String and look for

Re: Adding a SWF File with GWT2SWF

2009-02-12 Thread Matt Raible
helps anyone else that runs into a similar issue. Matt On Feb 9, 4:08 am, Matt Raible 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: > > > jQuery(document).ready(fun

Re: Evaling scripts in a JSNI method

2009-02-12 Thread Matt Raible
How do I go about fetching the script and then eval'ing it? Thanks, Matt On Feb 12, 11:45 am, jdwyah wrote: > scripts[i].getAttribute("src") is going to be something like > 'myscript.js' > > you can't just eval that string. Are you trying to fetch the

Evaling scripts in a JSNI method

2009-02-12 Thread Matt Raible
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() the contents of a

Adding a SWF File with GWT2SWF

2009-02-09 Thread Matt Raible
tried to use the GWT2SWF SWFWidget as well as raw HTML (new HTML ()) to add this to a GWT page, but have had no luck. When I run in hosted mode (or in Firefox), the dimensions of the Flash object show up and it's obvious Flash recognizes *something*, but nothing renders. If I "view g

Code Coverage with EclEmma

2009-02-03 Thread Matt Raible
believe they should be included at all. Any advice or howto I can use? Thanks, Matt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to Googl

  1   2   >