We are hoping to graduate this RC to 2.5 Final within a few weeks, so please give it a try and let us know your feedback! Also, many thanks to all of you for your contributions. Without your help, we wouldn't have had a GWT 2.5 release at all!
-Unnur, on behalf of the GWT team (yes - this is a re-post - this time with the correct subject line)
> We are hoping to graduate this RC to 2.5 Final within a few weeks, so > please give it a try and let us know your feedback! Also, many thanks to > all of you for your contributions. Without your help, we wouldn't have had > a GWT 2.5 release at all!
> -Unnur, on behalf of the GWT team > (yes - this is a re-post - this time with the correct subject line)
>> We are hoping to graduate this RC to 2.5 Final within a few weeks, so
>> please give it a try and let us know your feedback! Also, many thanks to
>> all of you for your contributions. Without your help, we wouldn't have had
>> a GWT 2.5 release at all!
>> -Unnur, on behalf of the GWT team
>> (yes - this is a re-post - this time with the correct subject line)
> 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.
> We are hoping to graduate this RC to 2.5 Final within a few weeks, so > please give it a try and let us know your feedback! Also, many thanks to > all of you for your contributions. Without your help, we wouldn't have had > a GWT 2.5 release at all!
> -Unnur, on behalf of the GWT team > (yes - this is a re-post - this time with the correct subject line)
> - The GWT tools can now run on JDK 7. (However, no JDK 7 language or > library features are available in GWT code yet.) > - The accessibility library introduced in RC1 has been cleaned up for > release.
> The "Accessibility" entry in the menu is missing the "(2.5)" and "New!"
Thanks for the release. Would the Validation work with AppEngine - at least the client-side? Has anyone managed to implement the client side validation with GAE? I have tested GWT 2.4 but gives security exceptions while testing on dev sdk, even for Client-side validation. Thanks
>> We are hoping to graduate this RC to 2.5 Final within a few weeks, so >> please give it a try and let us know your feedback! Also, many thanks to >> all of you for your contributions. Without your help, we wouldn't have had >> a GWT 2.5 release at all!
>> -Unnur, on behalf of the GWT team >> (yes - this is a re-post - this time with the correct subject line)
> We are hoping to graduate this RC to 2.5 Final within a few weeks, so > please give it a try and let us know your feedback! Also, many thanks to > all of you for your contributions. Without your help, we wouldn't have had > a GWT 2.5 release at all!
> -Unnur, on behalf of the GWT team > (yes - this is a re-post - this time with the correct subject line)
> We are hoping to graduate this RC to 2.5 Final within a few weeks, so > please give it a try and let us know your feedback! Also, many thanks to > all of you for your contributions. Without your help, we wouldn't have had > a GWT 2.5 release at all!
> -Unnur, on behalf of the GWT team > (yes - this is a re-post - this time with the correct subject line)
Quick update - there was a small issue in the samples/build.xml which made it so that ant eclipse.generate was not working. The binary has been updated with a fix for that issue.
>> We are hoping to graduate this RC to 2.5 Final within a few weeks, so >> please give it a try and let us know your feedback! Also, many thanks to >> all of you for your contributions. Without your help, we wouldn't have had >> a GWT 2.5 release at all!
>> -Unnur, on behalf of the GWT team >> (yes - this is a re-post - this time with the correct subject line)
>> We are hoping to graduate this RC to 2.5 Final within a few weeks, so >> please give it a try and let us know your feedback! Also, many thanks to >> all of you for your contributions. Without your help, we wouldn't have had >> a GWT 2.5 release at all!
>> -Unnur, on behalf of the GWT team >> (yes - this is a re-post - this time with the correct subject line)
>> We are hoping to graduate this RC to 2.5 Final within a few weeks, so
>> please give it a try and let us know your feedback! Also, many thanks to
>> all of you for your contributions. Without your help, we wouldn't have had
>> a GWT 2.5 release at all!
>> -Unnur, on behalf of the GWT team
>> (yes - this is a re-post - this time with the correct subject line)
> 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.
Has anyone tried the 2.5rc2 release with an app that uses the GAE Channel
api?
On production servers and version 2.4, my app has a stable inbound
messaging sink whereas on 2.5rc2 the very same software is getting
bombarded with repeated inbound messages.
-- Andy Stevko
===========
"If everything seems under control, you're just not going fast enough." M.
Andretti
> We are hoping to graduate this RC to 2.5 Final within a few weeks, so > please give it a try and let us know your feedback! Also, many thanks to > all of you for your contributions. Without your help, we wouldn't have had > a GWT 2.5 release at all!
> -Unnur, on behalf of the GWT team > (yes - this is a re-post - this time with the correct subject line)
Great news! This results is massive code reductions for us! Especially with the closure compiler. Wow!
The only problem I see so far, is that my issue is still not addressed. For some reason when compiling I am getting two types that seem to have different Oracles, but the same name.
Changing line 275 of dev/core/src/com/google/gwt/dev/javac/typemodel/JAbstractMethod.java as follows
- if (candidate.getType() != paramTypes[i]) { + if (!candidate.getType().toString().equals(paramTypes[i].toString())) {
fixes my problem. Is there any chance that this fix could be included in 2.5 final?
The simple example as given in that issue does not reproduce the problem, and I have not been able to reduce the problem down to the simplest case.
If it can't be fixed, I will live with it, since I already know the modifications that I need to make to get it to work with my product, but I would really like to be able to use GWT "out of the box".
Probably not since it isn't a regression. At this point most changes will be after 2.5. (Figuring out a clean test case will help for making that happen.)
On Wednesday, October 10, 2012 3:35:33 PM UTC-7, Paul Wagland wrote:
> Great news! This results is massive code reductions for us! Especially > with the closure compiler. Wow!
> The only problem I see so far, is that my issue is still not addressed. > For some reason when compiling I am getting two types that seem to have > different Oracles, but the same name.
> Changing line 275 of dev/core/src/com/google/gwt/dev/javac/typemodel/JAbstractMethod.java > as follows
> - if (candidate.getType() != paramTypes[i]) { > + if (!candidate.getType().toString().equals(paramTypes[i].toString())) {
> fixes my problem. Is there any chance that this fix could be included in > 2.5 final?
> The simple example as given in that issue does not reproduce the problem, > and I have not been able to reduce the problem down to the simplest case.
> If it can't be fixed, I will live with it, since I already know the > modifications that I need to make to get it to work with my product, but I > would really like to be able to use GWT "out of the box".
Hey, Congratulations. first of all ! . a curiosity question.. As GWT doesnot support Drag and drop feature of HTML5 yet,I am excited to know when the drag and drop feature will be introduced.
> We are hoping to graduate this RC to 2.5 Final within a few weeks, so > please give it a try and let us know your feedback! Also, many thanks to > all of you for your contributions. Without your help, we wouldn't have had > a GWT 2.5 release at all!
> -Unnur, on behalf of the GWT team > (yes - this is a re-post - this time with the correct subject line)
On Friday, October 12, 2012 5:30:05 AM UTC+2, Nagesh Salunke wrote:
> Hey, > Congratulations. first of all ! > . > a curiosity question.. > As GWT doesnot support Drag and drop feature of HTML5 yet,I am excited to > know when the drag and drop feature will be introduced.
It's actually been added in 2.4 a year ago! Or are you looking for something else?
I started having a problem in 2.5.0 RC2 while using TabLayOutPanel using UIBinder and selecting a default layout programatically. I keep getting the following exception.
Caused by: java.lang.AssertionError: Index out of bounds at com.google.gwt.user.client.ui.TabLayoutPanel.checkIndex(TabLayoutPanel.java :720) at com.google.gwt.user.client.ui.TabLayoutPanel.selectTab(TabLayoutPanel.java: 597) at com.google.gwt.user.client.ui.TabLayoutPanel.selectTab(TabLayoutPanel.java: 587)
Any idea? This was working fine in 2.3 version.
The following is the code. UIBinder.ui.xml: <gwt:TabLayoutPanel barHeight="10" barUnit="CM" ui:field="tabPanel_"> <gwt:tab> <gwt:header>Tab1 </gwt:header> <gwt:HTML>Tab1 Contents</gwt:HTML> </gwt:tab> <gwt:tab> <gwt:header>Tab2 </gwt:header> <gwt:HTML>Tab2 Contents</gwt:HTML> </gwt:tab>
Following is the java code in the widget.
public class TestPage { @UiField protected TabLayoutPanel tabPanel_;
public TestPage() {
tabPanel_ = new TabLayoutPanel();
}
@Override public Widget render(Map<String, String> parameters) { tabPanel_.selectTab(0);
} On Friday, October 12, 2012 2:11:52 AM UTC-7, Thomas Broyer wrote:
> On Friday, October 12, 2012 5:30:05 AM UTC+2, Nagesh Salunke wrote:
>> Hey, >> Congratulations. first of all ! >> . >> a curiosity question.. >> As GWT doesnot support Drag and drop feature of HTML5 yet,I am excited to >> know when the drag and drop feature will be introduced.
> It's actually been added in 2.4 a year ago! Or are you looking for > something else?
On Friday, October 12, 2012 11:11:52 AM UTC+2, Thomas Broyer wrote:
> On Friday, October 12, 2012 5:30:05 AM UTC+2, Nagesh Salunke wrote:
>> Hey, >> Congratulations. first of all ! >> . >> a curiosity question.. >> As GWT doesnot support Drag and drop feature of HTML5 yet,I am excited to >> know when the drag and drop feature will be introduced.
> It's actually been added in 2.4 a year ago! Or are you looking for > something else?
On Tuesday, October 16, 2012 9:55:16 AM UTC+2, Dimitrijević Ivan wrote:
> The problem is that there is no documentation and/or tutorial at all about > drag & drop support.
It's a thin wrapper around HTML5's DnD API, so any documentation and/or tutorial about HTML5 DnD (e.g. http://www.html5rocks.com/en/tutorials/dnd/basics/ ) applies, and the mapping from JS to GWT is rather straightforward.
Not all features are exposed by the GWT API though (no DropEffect for instance), so you might have to use JSNI at times.
If you ask me, the API is small enough that you can easily screen the javadoc (search for "drag" or "drop" in the class list) to grasp what's in there and what's not, how it maps to the native (JS) API, and how to use it (e.g. DragDropEventBase.isSupported()).
On Tuesday, October 16, 2012 10:13:35 AM UTC+2, Thomas Broyer wrote:
> On Tuesday, October 16, 2012 9:55:16 AM UTC+2, Dimitrijević Ivan wrote:
>> The problem is that there is no documentation and/or tutorial at all >> about drag & drop support.
> It's a thin wrapper around HTML5's DnD API, so any documentation and/or > tutorial about HTML5 DnD (e.g. > http://www.html5rocks.com/en/tutorials/dnd/basics/ ) applies, and the > mapping from JS to GWT is rather straightforward.
> Not all features are exposed by the GWT API though (no DropEffect for > instance), so you might have to use JSNI at times.
> If you ask me, the API is small enough that you can easily screen the > javadoc (search for "drag" or "drop" in the class list) to grasp what's in > there and what's not, how it maps to the native (JS) API, and how to use it > (e.g. DragDropEventBase.isSupported()).