Re: GWT podcasts?

2012-09-21 Thread gpike
On Friday, September 21, 2012 6:02:41 PM UTC-6, gpike wrote: > > When I saw your question I wondered the same thing. I had looked before > and didn't find much So I started 2 of my own. The first > http://www.easygwt.com/ is a podcast I do with Jeff Maslo and we bring > GWT related news items

Re: GWT podcasts?

2012-09-21 Thread gpike
When I saw your question I wondered the same thing. I had looked before and didn't find much So I started 2 of my own. The first http://www.easygwt.com/ is a podcast I do with Jeff Maslo and we bring GWT related news items to you each week (or we strive for weekly). The second is http://www.g

Re: Disclosure panel open/close events fire before the widget is actually opened or closed

2012-09-21 Thread Rasha ElSayed
Thanks for replying Yes I have tried Deferred command but it gives the same effect, or may be I use it in a wrong way? I schedule it inside the event handler, is this the right place? disclosurePanel.addOpenHandler(new OpenHandler() { @Override public void onOpen(OpenEvent arg0)

Re: Enter key to change the focus from one TextInputCell to another in a celltable.

2012-09-21 Thread Stefaan Vanderheyden
Sorry, I forgot to mention: You get the currentRow from the index value provided in the field updater and the currentCol by querying the celltable for the updated column's index (cellTable.getColumnIndex(updatedCol))... On Friday, September 21, 2012 11:09:08 PM UTC+2, Stefaan Vanderheyden wrote

Re: Enter key to change the focus from one TextInputCell to another in a celltable.

2012-09-21 Thread Stefaan Vanderheyden
Here is some code you might also find applicable to your use case: private void focusOnNext(final int currentRow, final int currentCol) { // Scan remaining cells in table for a form element to focus on. for (int r = currentRow; r < this.pricingTable.getRowCount(); r++) {

Disclosure panel that is not collapsible

2012-09-21 Thread Rasha ElSayed
Hi I want to display a panel in two pages, in the first page it is collapsible and in the second it is not. This is the only difference. I am using the UIBinder technique, so I had to introduce two ui.xml files, one using DisclosurePanel and the other using simple HTMLPanel!! I know this is no

Deploy Module Button in Eclipse Juno (GWT SDK 2.5)

2012-09-21 Thread beig
Hello, I am using Eclipse Juno on Windows (7). And I am searching for the Deploy Module Button. Can someone tell me how to enable it? Thanks -- You received this message becau

Re: GWT 2.5 RC1 Is Here!

2012-09-21 Thread Juan Carlos Aranda
Somebody please can tell me how to install the gwt-2.5.0.rc1.zip in Eclipse Juno ? I downloaded the file. Thanks Pd. Excuseme my English. 2012/9/21 jones34 > Great news. Congrats GWT team! > > > On Wednesday, June 27, 2012 4:39:07 PM UTC-4, Rajeev Dayal wrote: > >> Hey all, >> >> We're excit

Re: Consumer site using GWT/GAE

2012-09-21 Thread Jeff Chimene
Looks good! Might I suggest clarifying that the hotel info ("check availability") will open in another window? Cheers, jec On Fri, Sep 21, 2012 at 1:08 PM, Boris Brudnoy < boris.brud...@healthometry.com> wrote: > Michael, the app looks really great. Have you considered registering it in > the GW

Re: GWT 2.5 RC1 Is Here!

2012-09-21 Thread jones34
Great news. Congrats 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 here

Re: Future of GWT survey

2012-09-21 Thread Clint Gilbert
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Cool, thanks for the pointer. I knew about Xtend, but didn't put see the implications of its compiling to Java for GWT development. I'm quite happy with Scala in general, but something statically-typed and less verbose than Java would be very welcome

Re: Consumer site using GWT/GAE

2012-09-21 Thread Boris Brudnoy
Michael, the app looks really great. Have you considered registering it in the GWT Reference List ? On Wednesday, September 19, 2012 12:48:27 PM UTC-4, mpowers wrote: > > All, > > As an example of a consumer-facing GWT deployment, Hotelme.com just went > t

Re: Super Dev Mode general question

2012-09-21 Thread Chris Lercher
I want to add to that list, that running Dev Mode with a debugger can be used to fine-tune user interfaces extremely quickly: What I usually do is to put the unit which I need to optimize in a panel, and add a button that refreshes the panel with a new instance of the unit. This doesn't even tak

Re: Error when running my application under GWT 2.5 RC

2012-09-21 Thread Moutellou
When I take a second look to the log, I see that that the problem is with the gquery-dnd-bundle-1.0.5.jar. It doesn't support GWT 2.5 yet On Saturday, September 15, 2012 5:38:53 PM UTC-4, Moutellou wrote: > > I got this error when I run my application undex GWT 2.5 RC. The > application contains

Re: Serializing different objects in one class that implements IsSerializable

2012-09-21 Thread Nick Matviko
Ok, so with that being said, ill need to create my own LatLng and Polygon objects? or? On Fri, Sep 21, 2012 at 8:19 AM, Jens wrote: > The Polygon class is a JavaScriptOverlay type provided by Google and it > does not have a no-arg constructor, so you can't use it with GWT-RPC. Other > than that

Re: Serializing different objects in one class that implements IsSerializable

2012-09-21 Thread Jens
The Polygon class is a JavaScriptOverlay type provided by Google and it does not have a no-arg constructor, so you can't use it with GWT-RPC. Other than that I assume you can't use JSO's on server side either (How should JSNI work on server side?) so it does not make sense to use them in a seri

Re: Serializing different objects in one class that implements IsSerializable

2012-09-21 Thread Nick Matviko
ok so for my createpolygon method i just make that private? You cant make a private constructor of an object in another class, or can you? And for the polygon class being shown, i am just importing import com.google.gwt.maps.client.overlay.Polygon this. On Fri, Sep 21, 2012 at 7:58 AM, Paul Robin

Re: Serializing different objects in one class that implements IsSerializable

2012-09-21 Thread Paul Robinson
You don't show the Polygon class, but from the error it looks like you haven't provided a zero-argument constructor. It must have one, even if it's private and you never call it. GWT-RPC needs it for anything that it serializes. Paul On 21/09/12 15:40, coffeMan wrote: > I created a class that i

Re: In page (html) anchors don't work - they interfere with history tokens

2012-09-21 Thread Jens
Have you tried to attach an event listener (DOM.addEventListener()) to these anchors and call ClickEvent.preventDefault() when you click on them? That could suppress the history change and you can scroll your html document yourself by reading the href attribute and searching the anchor you need

Serializing different objects in one class that implements IsSerializable

2012-09-21 Thread coffeMan
I created a class that implements IsSerializable. I am using Polygon and LatLng within this class called BoundingBox. I am getting issues with no being able to instantiate Polygon without a constructor. Do you create a separate Polygon class? [ERROR] com.google.gwt.maps.client.overlay.Polygo

Re: GWT FileUpload

2012-09-21 Thread Niki
Thanks Thad! You've really helped me with your post.I've had no clue this method transforms the server response. -- 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/goo

Re: In page (html) anchors don't work - they interfere with history tokens

2012-09-21 Thread David
I'm not quite sure what you are trying to do. If your hrefs are meant to be page request then lose the hash. However if your hrefs are truly meant to be targeted as history tokens then you can try something like : Chapter 1 On Friday, September 21, 2012 4:02:35 AM UTC-4, tanteanni wrot

ClickHandler for ImageResource in tablebuilder (GWT 2.5)

2012-09-21 Thread James
I have a CellTable that uses a table builder. In the table builder, there is one ImageResource. I get a html from ImageResource and append it to cellRender method in table builder. I cannot use a ClickableText or cell composite because this cell spans multiple columns. I can get whatever I need

Re: UIBinder - problem with damaged layout

2012-09-21 Thread Magnus
Hello Thomas, thank you! When I used DecoratorPanel, I did not know CaptionPanel. But CaptionPanel is exactly what I want: group similar widgets. My last layout with CaptionPanel is currently the one that best works for me. There are just two issues... Magnus Am Freitag, 21. September 2012 14

Re: UIBinder - problem with damaged layout

2012-09-21 Thread Magnus
Hello, sorry for posting my learning curve! :-) I found that DecoratedPanel caused the problems. But I also found that there is CaptionPanel, which much more suits my needs! The layout below is nearly perfect for me. Just two things are missing: - The orange textbox should horizontally grow.

Re: UIBinder - problem with damaged layout

2012-09-21 Thread Thomas Broyer
On Friday, September 21, 2012 2:10:42 PM UTC+2, Magnus wrote: > > Hello, > > I simplified the layout as follows, but the fluid DecoratorPanel still > gets damaged when resizing the window. > DecoratorPanel uses a 9×9 table, and it looks like the first and last columns are resizing. Try the fol

Re: Way get info if JavaScriptObject is one of defined overlay objects

2012-09-21 Thread Thomas Broyer
On Friday, September 21, 2012 1:16:56 PM UTC+2, js402882 wrote: > > Is there any way get info if JavaScriptObject is one of defined overlay > objects? > Example: > I have native factory method which creates JavaScriptObjects: > > class WeirdFactory > { > native JavaScriptObject create(String

Re: UIBinder - problem with damaged layout

2012-09-21 Thread Magnus
Hello, I simplified the layout as follows, but the fluid DecoratorPanel still gets damaged when resizing the window. I hope someone can help, because I am crazy about using UIBinder now... :-) Magnus - http://dl.google.com/gwt/DTD/xhtml.ent";> Beteiligung Status Turnier

UIBinder - problem with damaged layout

2012-09-21 Thread Magnus
Hello, I am trying to build my first user interface using UIBinder and I am having problems with the layout. It looks like this: https://picasaweb.google.com/104334857964624808900/21September2012?authuser=0&feat=directlink (The ui.xml is attached below.) The red area on the right has a fixed w

Way get info if JavaScriptObject is one of defined overlay objects

2012-09-21 Thread js402882
Is there any way get info if JavaScriptObject is one of defined overlay objects? Example: I have native factory method which creates JavaScriptObjects: class WeirdFactory { native JavaScriptObject create(String type) { if (type == "car") return { name: "e46", maker: "bmw", seats:

Re: Change i18n constants in GWT for sweden

2012-09-21 Thread Thomas Broyer
On Friday, September 21, 2012 10:16:11 AM UTC+2, roman_e wrote: > > Hello > > I use the i18n functionality of GWT to create a multilingual > webapplication and I'd like to translate it into swedish too. > But there's the problem that the date format for GWT is wrong in its > constants file, so

Change i18n constants in GWT for sweden

2012-09-21 Thread roman_e
Hello I use the i18n functionality of GWT to create a multilingual webapplication and I'd like to translate it into swedish too. But there's the problem that the date format for GWT is wrong in its constants file, so it's in the wrong format on the page. Is it possible to overwrite these constan

In page (html) anchors don't work - they interfere with history tokens

2012-09-21 Thread tanteanni
This question could also be answered here :-). I want to add a html-document to a view. the html page contains an toc with anchors Chapter 1 and Chapter 1 (very oldschool html). The