Thursday, August 30, 2012

Re: any chance to get FF15 dev plugin

Thanks everyone. Our release process is surprisingly cumbersome, but it should be up soon.

- Brian

--
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-toolkit/-/eBLu9SDXbOEJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: How to get combobox from handler change event method?

Perfect, thanks!

On Thursday, August 30, 2012 3:02:00 PM UTC-7, Jens wrote:
What about something like:

Object source = event.getSource();
if(source == combo1) {
.....
} else if(source == combo2) {
.....
}

-- 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-toolkit/-/PJAl5iBojoMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: any chance to get FF15 dev plugin

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Same here, thank you!

On 08/30/2012 09:08 AM, koma wrote:
> confirmed working for FF15 on Linux 64-bit... thx !
>
> -- 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-toolkit/-/b43tvSGdKBkJ.
> To post to this group, send email to
> google-web-toolkit@googlegroups.com. To unsubscribe from this
> group, send email to
> google-web-toolkit+unsubscribe@googlegroups.com. For more options,
> visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAlA/458ACgkQ5IyIbnMUeTuPhgCfTwaBuniMvzI42o4ZyqTGMneb
ptgAni599Nj31sB6fjOBxcE24OemJw+3
=B8oE
-----END PGP SIGNATURE-----

--
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+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: How to get combobox from handler change event method?

What about something like:

Object source = event.getSource();
if(source == combo1) {
.....
} else if(source == combo2) {
.....
}

-- 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-toolkit/-/YSuDdcpIL4UJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

How to get combobox from handler change event method?

I have several GXT SimpleComboBoxes to which I've added a ValueChangeHandler.  
        combo1.addValueChangeHandler( new ValueChangeHandler<String>() {                  @Override              public void onValueChange( ValueChangeEvent<String> event ) {                  ...              }          });

Is there a way to get the combo box (here, "combo1") that the handler is responding to from within onValueChange() ?  Basically, I'm going to be adding the same handler to many combo boxes, and I want to be able to figure out which one I have and do stuff to them after the user makes a selection.

Thanks for any suggestions.

--
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-toolkit/-/vu12MjvH4LAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: Multiple modules (how to share outer container state and structure)

1.) Yes
2.) Never tried it but I would say yes as RootLayoutPanel is a singleton LayoutPanel and a LayoutPanel can have multiple childs. See LayoutPanel.add() JavaDoc.

Some general thoughts:
- one monolithic app gives you the best optimizations (code size, number of http requests while loading app/resources). But as your app grows DevMode will become slower and needs more RAM. To counter this, you should split your app into smaller GWT modules (without entrypoints), e.g. library.gwt.xml, community.gwt.xml, admin.gwt.xml, and then inherit them as library in App.gwt.xml. This allows you to use DevMode/SuperDevMode with your smaller GWT modules instead of the whole app. Some more information can be found here: https://groups.google.com/d/topic/google-web-toolkit/cFRWX5ziLZc/discussion

- When you want to use an outer shell application that loads "inner" GWT apps, each GWT app should have its own host page and the outer app shell should load them through an iframe. This gives you the ability to update each app independently but also provides some overhead as your clients need to download common code multiple times (e.g. GWT's own framework code, which is included in each app's JS). If you then need communication between your "inner" GWT app and the outer shell app, take a look at: https://groups.google.com/d/topic/google-web-toolkit/c8RP6TIYbqQ/discussion

Personally I would go with the monolithic app that is split up into smaller pieces for easier development. Only if I would have a lot of different areas in my app and I want to update them independently I would consider an outer app + multiple independent "inner" apps approach.

Hope this helps.

-- 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-toolkit/-/ps_1CxOEGMEJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

GWT listbox not working with single click.

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 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-toolkit/-/k910Jep6ltQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.