HandlerManager for Cells

2012-06-27 Thread Mohit
Hello everybody, I have a requirement in my project to have event handlers to cells. For example, there is a TextInputCell to which I want to attach a handler to focus event. But AbstractCell doesn't provide any HandlerManager functionality to which I can add a handler. Does anybody has sugges

Re: Google IO - Anybody up for a GWT meetup?

2012-06-27 Thread Daniel Kurka
I am always up for a GWT chat. give me a ping on twitter tomorrow on IO: @dankurka Am 27.06.2012 um 02:07 schrieb István Szoboszlai: > Hello Guys, > > I already have one GWT developer in the team. We still accept new > applications :) > > I also have a US phone number now in case anybody woul

GWT Widgets Do Not Resize In Relation To Browser

2012-06-27 Thread Steve
Wrap it in a resizeLayoutPanel. Then you can set set a resizeHandler. When that triggers, get the new height and width of the resizePanel and resize the widgets inside it proportionately. You may need to play around with the width to subtract the width of the scroll bars. -- You received this

Re: GWT 2.5 RC1 Is Here!

2012-06-27 Thread Inderjeet Singh
Congrats GWT team! I am hoping that JRE emulation is more complete than previous versions. I am tired of not being able to use some simple JDK classes or methods such as Deque. The problem is exacerbated for us since we are trying to use PlayN framework to write cross-platform code. Can anyon

Re: GWT 2.5 RC1 Is Here!

2012-06-27 Thread Dharmesh
Thanks Rajeev. Sent from my iPad On Jun 27, 2012, at 6:16 PM, Handw wrote: > So good to hear this news. Thank you GWT team. > > On Wednesday, June 27, 2012 4:39:07 PM UTC-4, Rajeev Dayal wrote: > Hey all, > > We're excited to announce the GWT 2.5 Release Candidate! Read about it on the > GWT

GWT Widgets Do Not Resize In Relation To Browser

2012-06-27 Thread KGD
How do you ensure that GWT components automatically resize appropriately when the browser window resizes? I've tried setting the component height/width to 100% and the components still remain fixed dimensions. Thanks, KGD -- You received this message because you are subscribed to the Google

Re: GWTTest Case Error - Cross Talk Between TestClasses - Am I crazy?

2012-06-27 Thread Joseph Lust
Colin, Thanks. That fix is how I fixed it, but I did not expect that JUnit would report the failure of one test as the failure of another, unrelated async test. That is what I can't figure out. Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups "Go

Re: how to get the javascript code

2012-06-27 Thread Joseph Lust
Set compilation to "PRETTY" mode and then use Chrome dev tools', or Firefox's Firebug to view the script that was passed to your browser. Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the we

Re: How to use Super Dev Mode

2012-06-27 Thread Brian Slesinsky
If your source code gets compiled to a jar on the code server's classpath, the code server likely won't see any changes. We normally use the -src argument to point to the source directory where the files are that you're editing, so I know that part works. I'm not sure about changes to things on

Re: GWT 2.5 RC1 Is Here!

2012-06-27 Thread Handw
So good to hear this news. Thank you GWT team. On Wednesday, June 27, 2012 4:39:07 PM UTC-4, Rajeev Dayal wrote: > > Hey all, > > We're excited to announce the GWT 2.5 Release Candidate! Read about it on > the GWT Blog , > and download it

Re: GWT 2.5 RC1 Is Here!

2012-06-27 Thread Alain Ekambi
Super 2012/6/27 Rajeev Dayal > Hey all, > > We're excited to announce the GWT 2.5 Release Candidate! Read about it on > the GWT Blog , > and download it here > (bottom > of the page

How to dynamically resize the table width after adding/removing columns?

2012-06-27 Thread javadev79
How do I ensure the datagrid expands to the total columns width or shrinks to the minimum table width on adding/removing columns? Using refreshColumnWidths() after add/remove columns has no effect. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit

get the country and city from latitude and longitude

2012-06-27 Thread ambasibe
Hi everyone, Can someone tells me what class use to be able to get country's name and city's name by giving its latitude and longitude ? Thank to all, best regards. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion

GWT 2.5 RC1 Is Here!

2012-06-27 Thread Rajeev Dayal
Hey all, We're excited to announce the GWT 2.5 Release Candidate! Read about it on the GWT Blog , and download it here (bottom of the page). The RC has been uploaded to Maven Central wit

Re: Deferred Binding with ClientBundle

2012-06-27 Thread Joseph Lust
Yes, Pure SVG would need an image for for IE. If you use RaphaelJs though, you can use the SVG on IE. Joe -- 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/msg/google-we

Re: Firefox 13 DevMode Plugin

2012-06-27 Thread Riley
Yes, we are experiencing memory problems with Mac OS 10.7, FF13, and this new plugin On Friday, June 15, 2012 5:06:40 AM UTC-5, Bas wrote: > > Today, I downgraded to Firefox 11. The devmode plugin of firefox 13 (Mac > OS 10.6.8) seems to have a memoryleak. Are more people experiencing memory >

Re: Loading third-party Javascript with a script loader

2012-06-27 Thread Joseph Lust
> > At the moment we have quite a few script files and the only way we were > able to get GWT and our product to work together is by adding all imports > manually into the HTML file (which forces them to be loaded before GWT). Could you please explain why this is the only way they will work?

Re: issue with rpc when behind a reverse proxy

2012-06-27 Thread Jens
Same answer: https://groups.google.com/forum/?fromgroups#!topic/google-web-toolkit/f9FFjvQd1xg -- J. -- 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/msg/google-web-to

Re: Custom Widget in FlowPanel seem not to work

2012-06-27 Thread Jens
> > However when I place the resulting Widget into a FlowPanel, it is layouted > from top to down, like in a VerticalPanel. > Your widget needs some CSS rules (probably display:inline) so it does not fill up the entire width of the FlowPanel. If there is no horizontal space available FlowPanel

issue with rpc when behind a reverse proxy

2012-06-27 Thread Thomas Lefort
(this is a repost, I had to change some content) I have the following problem: - I have a web application installed on a customer's server and running with jetty at /ksatweb. The application module is named kweb. - the application is available on the web through a reverse proxy and mapped to htt

Re: reverse proxy issue with rpc

2012-06-27 Thread Jens
You have to overwrite RemoteServiceServlet.doGetSerializationPolicy(...) and adjust it to your needs as the default implementation does not work with your setup. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discuss

Custom Widget in FlowPanel seem not to work

2012-06-27 Thread AngeloSchneider
Hi everyone, I tried to build my own Widget (following this example: http://code.google.com/p/google-web-toolkit-doc-1-4/wiki/DevGuideCreatingCustomWidgets) However when I place the resulting Widget into a FlowPanel, it is layouted from top to down, like in a VerticalPanel. I'm using GWT SDK

reverse proxy issue with rpc

2012-06-27 Thread Thomas Lefort
I have the following problem: - I have a web application installed on a customer's server and running with jetty at /ksatweb. The application module is named kweb. - the application is available on the web through a reverse proxy and mapped to https://portal.ksat.no/ordering/ksatweb/ The issue I

Re: Will ClientBundle work when I allow people to embed my app in their site?

2012-06-27 Thread Jens
> > From what I am reading I guess the ExternalTextResource cannot switch to > JSONP at runtime? Correct, you can not switch at runtime because different code is generated during compilation based on the mentioned configuration property. -- J. -- You received this message because you are s

Re: Will ClientBundle work when I allow people to embed my app in their site?

2012-06-27 Thread Carsten
Thanks. Very helpful. From what I am reading I guess the ExternalTextResource cannot switch to JSONP at runtime? I can test at runtime if the HTML host page domain is different from the Module domain and activate it at runtime. Maybe I will use ExternalTextResource then. I need to check first i

Re: GWTTest Case Error - Cross Talk Between TestClasses - Am I crazy?

2012-06-27 Thread Colin Alworth
The callbacks you are configuring aren't running until the later test is in the middle of working. You are using the finishTest() and delayTestFinish(int) correctly in your first test, but the second has a pair of asserts going off asynchronously, but you are not delaying that test's completion

Re: GWT 2.5, when?

2012-06-27 Thread Chris Price
Are there plans for RC-1 to go into the maven repo? On Wed, Jun 27, 2012 at 7:11 AM, Ali Jalal wrote: > Many thanks for releasing and announcing! > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to

Re: GWT Plugin for Eclipse 3.8 (Juno 4.2)

2012-06-27 Thread Albert Attard
No one managed to install GWT Plugin on Eclipse 3.8 (Juno 4.2)? Regards, Albert On Monday, June 25, 2012 7:29:07 PM UTC+2, Albert Attard wrote: > > Hi everyone, > > The GWT Plugin update site ( > https://developers.google.com/eclipse/docs/download) only have links upto > Eclipse 3.7 (Indigo). >

Re: Will ClientBundle work when I allow people to embed my app in their site?

2012-06-27 Thread Jens
CssResource: works as its inlined into your JavaScript to avoid round trip times. ImageResource: should work as you typically use it with GWT's @Sprite in CSS or in combination with GWT's Image class. In both cases the image will be loaded via CSS background-image: url() => no SOP. DataResourc

Re: Communicating with the server

2012-06-27 Thread Chris Price
You could try Errai - http://www.jboss.org/errai "Talking to the server is much easier, too! Leveraging ErraiBus, you can transparently and easily mix event-based and RPC-based functionality in your app as neccessary. When leveraging the bus, everything in your app is push, everything is asynchro

Re: Will ClientBundle work when I allow people to embed my app in their site?

2012-06-27 Thread Carsten
I was talking about ClientBundle, which means resources not embedded in and loaded by the website but dynamically loaded by the GWT app at runtime. ClientBundle has to use some mechanismn inside like XHR or JSONP or something when it turns data into ExternalTextResources or DataResources. I kno