Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Announcing GWT 1.6 Milestone 2
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  15 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Bruce Johnson  
View profile  
 More options Feb 25 2009, 3:45 pm
From: Bruce Johnson <br...@google.com>
Date: Wed, 25 Feb 2009 15:45:29 -0500
Local: Wed, Feb 25 2009 3:45 pm
Subject: Announcing GWT 1.6 Milestone 2

The GWT team is happy to announce the availability of Google Web Toolkit 1.6
Milestone 2! Binary distributions are available for download directly from
the GWT Google Code project.

http://code.google.com/p/google-web-toolkit/downloads/list?can=1&q=1....

If you have already tried GWT 1.6 Milestone 1, you may not notice much
difference in Milestone 2. Changes have mostly been general polish and
various small bug fixes. For the nitty-gritty details of the changes since
the previous milestone, see the attached source control commit logs. You can
also watch the GWT bug tracker for the most up-to-date list of resolved
issues (
http://code.google.com/p/google-web-toolkit/issues/list?can=1&q=statu...).
As for doc, the javadoc that comes bundled with the distribution should be
up-to-date, but the online Developer Guide (
http://code.google.com/docreader/#p=google-web-toolkit-doc-1-6) is still
being tweaked.

We anticipate that GWT 1.6 M2 will be the last milestone build for this
version. After a few more bugs fixes and a bit more doc, we expect it to be
followed soon by a release candidate build. In the meanwhile, please report
bugs to the GWT issue tracker (
http://code.google.com/p/google-web-toolkit/issues/list) after doing a quick
search to see if your issue has already been reported. If you encounter a
bug in 1.6 M2 that you think qualifies as a showstopper, we would greatly
appreciate it if you'd also reply on this thread to alert the engineering
team.

As always, remember that GWT milestone builds like this are
use-at-your-own-risk. Don't be surprised if it takes a bit of trial and
error to get everything to work, and we don't recommend it for production
use quite yet.

-- Bruce, on behalf of the GWT team


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ian Bambury  
View profile  
 More options Mar 2 2009, 7:39 pm
From: Ian Bambury <ianbamb...@gmail.com>
Date: Tue, 3 Mar 2009 00:39:27 +0000
Local: Mon, Mar 2 2009 7:39 pm
Subject: Re: Announcing GWT 1.6 Milestone 2

I doubt it is considered a showstopper. No-one took any notice when I
mentioned it for 1.5 and 1.6.0, but it severely limits what I would like to
be able to do.
There are a number of widgets which cannot be used anywhere inside
DisclosurePanels and StackPanels and probably other things.

For example: add a SplitPanel to a DisclosurePanel and in IE the split is
set at 0 but can be moved, in FF/Safari/Chrome and, I think, Opera, it is at
0 and cannot be moved

There are a number of other combinations like this. Here's some example
code:

public class Main implements EntryPoint
{
    public void onModuleLoad()
    {
        DisclosurePanel d = new DisclosurePanel("Click To Open");
        RootPanel.get().add(d);
        HorizontalSplitPanel s = new HorizontalSplitPanel();
        d.add(s);
        s.setLeftWidget(new Label("Left"));
        s.setRightWidget(new Label("Right"));
        s.setSize("200px", "100px");
        s.setSplitPosition("100px");
    }

}

Ian

http://examples.roughian.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ian Bambury  
View profile  
 More options Mar 2 2009, 8:22 pm
From: Ian Bambury <ianbamb...@gmail.com>
Date: Tue, 3 Mar 2009 01:22:23 +0000
Local: Mon, Mar 2 2009 8:22 pm
Subject: Re: Announcing GWT 1.6 Milestone 2

id's in HTMLPanels have to be unique within an application for every
HTMLPanel every time you use it. so, for example, if you go to a database
and get some HTML returned, say
<div id=name>Fred</div>

 then

getElementById("name").getInnerHTML()

will return 'Fred'

But from then on, every getElementById("name").getInnerHTML() will return
'Fred', even if you create a new instance of the same class, even if you
create an instance of a completely different class

I reported this behaviour for version 1.4 for RootPanel back in 2007
(issue#1937). Nothing has happened about it but I was recommended to use
HTMLPanel. This has now become ususable, too.

Is it worth adding a new issue, or will the v1.4 issue cover it?

Or is it supposed to do that now?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sumit Chandel  
View profile  
 More options Mar 3 2009, 2:18 pm
From: Sumit Chandel <sumitchan...@google.com>
Date: Tue, 3 Mar 2009 11:18:50 -0800
Local: Tues, Mar 3 2009 2:18 pm
Subject: Re: Announcing GWT 1.6 Milestone 2

Hi Ian,
Thanks for bringing this back up on the radar. I've updated Issue #1937 so
that the team can take another look at the issue and consider it for
inclusion for 1.6. Given that the HTMLPanel solution no longer works, this
should probably be fixed for 1.6. The issue log should be seeing some action
soon, so keep an eye out for that.

Issue #1937:
http://code.google.com/p/google-web-toolkit/issues/detail?id=1937

Cheers,
-Sumit Chandel


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sumit Chandel  
View profile  
 More options Mar 3 2009, 2:24 pm
From: Sumit Chandel <sumitchan...@google.com>
Date: Tue, 3 Mar 2009 11:24:46 -0800
Local: Tues, Mar 3 2009 2:24 pm
Subject: Re: Announcing GWT 1.6 Milestone 2

Hello Ian,

Agreed, this doesn't sound like a showstopper, but still should be
investigated for a fix in a future release if not in 1.6.
I couldn't find this issue reported on the Issue Tracker. Feel free to add
this to the tracker - the details provided in the message below should be
enough for the issue report itself. I'll add it myself in case you don't get
a chance to get to it later today.

Cheers,
-Sumit Chandel


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Riyaz Mansoor  
View profile  
 More options Mar 4 2009, 10:24 pm
From: Riyaz Mansoor <riyaz.mans...@gmail.com>
Date: Wed, 4 Mar 2009 19:24:00 -0800 (PST)
Subject: Re: Announcing GWT 1.6 Milestone 2

Just installed M2 and took a look around. I must say I like it - feels
more natural to me. For a new project I wanted to start in 1.6, I
didn't want to migrate in the middle and update all the deprecated
stuff.

Haven't put it through its paces yet. But first thing - I have control
of web.xml :)

Excellent work.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Riyaz Mansoor  
View profile  
 More options Mar 5 2009, 3:28 am
From: Riyaz Mansoor <riyaz.mans...@gmail.com>
Date: Thu, 5 Mar 2009 00:28:07 -0800 (PST)
Local: Thurs, Mar 5 2009 3:28 am
Subject: Re: Announcing GWT 1.6 Milestone 2

What version of Jetty is included with 1.6 ?

Specifically, which version of the Servlet API does it support ?  I
hope 2.4 is supported.

On Mar 5, 8:24 am, Riyaz Mansoor <riyaz.mans...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sumit Chandel  
View profile  
 More options Mar 5 2009, 2:14 pm
From: Sumit Chandel <sumitchan...@google.com>
Date: Thu, 5 Mar 2009 11:14:03 -0800
Local: Thurs, Mar 5 2009 2:14 pm
Subject: Re: Announcing GWT 1.6 Milestone 2

Hi Riyaz,
GWT 1.6 ships with Jetty 6.1.11, which I believe supports Servlet API 2.5
and downwards (meaning 2.4 is supported).

Cheers,
-Sumit Chandel

On Thu, Mar 5, 2009 at 12:28 AM, Riyaz Mansoor <riyaz.mans...@gmail.com>wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Markus Knittig  
View profile  
 More options Mar 5 2009, 5:19 pm
From: Markus Knittig <mar...@myd0.de>
Date: Thu, 05 Mar 2009 23:19:03 +0100
Local: Thurs, Mar 5 2009 5:19 pm
Subject: Re: Announcing GWT 1.6 Milestone 2
On 03/05/2009 08:14 PM, Sumit Chandel wrote:

> GWT 1.6 ships with Jetty 6.1.11, which I believe supports Servlet API 2.5
> and downwards (meaning 2.4 is supported).

Any chance of upgrading before the release? Because support for multiple
webapp directories would be quite handy, especially for Maven:
http://docs.codehaus.org/display/JETTY/Multiple+WebApp+Source+Directory

MfG Markus


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Markus Knittig  
View profile  
 More options Mar 6 2009, 11:44 am
From: Markus Knittig <mar...@myd0.de>
Date: Fri, 06 Mar 2009 17:44:09 +0100
Local: Fri, Mar 6 2009 11:44 am
Subject: Re: Announcing GWT 1.6 Milestone 2
On 03/05/2009 11:19 PM, Markus Knittig wrote:

> Any chance of upgrading before the release? Because support for multiple
> webapp directories would be quite handy, especially for Maven:
> http://docs.codehaus.org/display/JETTY/Multiple+WebApp+Source+Directory

FYI: I created an issue for this feature request:
http://code.google.com/p/google-web-toolkit/issues/detail?id=3456

Best regards,
  Markus


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
hezjing  
View profile  
 More options Mar 8 2009, 11:23 am
From: hezjing <hezj...@gmail.com>
Date: Sun, 8 Mar 2009 23:23:20 +0800
Local: Sun, Mar 8 2009 11:23 am
Subject: Re: Announcing GWT 1.6 Milestone 2

Hi
In
http://code.google.com/p/google-web-toolkit/downloads/list?can=1&q=1....
,
may I know why the GWT 1.6 Milestone 2 distributions are labeled as
"deprecated"?

--

Hez


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Vitali Lovich  
View profile  
 More options Mar 8 2009, 1:56 pm
From: Vitali Lovich <vlov...@gmail.com>
Date: Sun, 8 Mar 2009 13:56:55 -0400
Local: Sun, Mar 8 2009 1:56 pm
Subject: Re: Announcing GWT 1.6 Milestone 2

My guess would be so that they don't show up unless people really look for
it.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sumit Chandel  
View profile  
 More options Mar 9 2009, 1:48 pm
From: Sumit Chandel <sumitchan...@google.com>
Date: Mon, 9 Mar 2009 10:48:03 -0700
Local: Mon, Mar 9 2009 1:48 pm
Subject: Re: Announcing GWT 1.6 Milestone 2

Hi Hez,
As Vitali mentioned, marking these downloads as deprecated is our way of
keeping them from view on the main download page. The milestone builds
aren't fit for production, so we want to make sure no one mistakenly
downloads a milestone build for work that they're planning to put into
production.

Cheers,
-Sumit Chandel


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
PS  
View profile  
 More options Mar 12 2009, 8:54 am
From: PS <psl...@gmail.com>
Date: Thu, 12 Mar 2009 05:54:34 -0700 (PDT)
Local: Thurs, Mar 12 2009 8:54 am
Subject: Re: Announcing GWT 1.6 Milestone 2
Hi All
   I have an issue, I want to drag and drop the panel, It can be
horizontal or vertical or any other panel so that i can change it
property(like change its size), but it is not supporting for the
panels it is supporting for simple widgets like label,button,text box
and able to change it property also.

I try to do but facing issue.
Example:
AbsolutePanel ab=new AbsolutePanel();
Label LHP = new Label("HorizontalPanel");
LHP.addClickHandler(new ClickHandler(){
public void onClick(ClickEvent event) {
  HorizontalPanel newHP = new HorizontalPanel();
         newHP.setSize("50", "50");  // on click panel size must be
fixed,user can change it size
         newHP.setBorderWidth(2);    // broder
         ab.add(newHP);              // adding panel to absolutePanel
        dragController.makeDraggable(newHP);

        // This listner is called when a panel is clicked
         newHP.addMouseDownHandler(new MouseDownHandler(){
        public void onMouseDown(MouseDownEvent event) {
        // TODO Auto-generated method stub
        Label proplab=new Label("Property Pallet");
        }

});

Here addMouseDownHandler it is not supporting please any one can help
me in this regard.

regards
Lokesh


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
powwow  
View profile  
 More options Apr 28 2009, 5:24 pm
From: powwow <Jimmy.W...@gmail.com>
Date: Tue, 28 Apr 2009 14:24:34 -0700 (PDT)
Local: Tues, Apr 28 2009 5:24 pm
Subject: Re: Announcing GWT 1.6 Milestone 2
Try using FocusPanel.  Let us know if it solves your problem.

On Mar 12, 5:54 am, PS <psl...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »