announce@woodstock.java.net

Project Woodstock 4.1 Build 2 Posted and Available

From: Dick Spellman <Richard.Spellman_at_Sun.COM>
Date: Mon, 09 Apr 2007 16:13:36 -0400

Build 2 of the Project Woodstock 4.1 release has been posted and links can be found on the download page.

https://woodstock.dev.java.net/Download.htm

The Roadmap page has been updated with some changes.  A few of the client side renderers have moved out to Build 3.

https://woodstock.dev.java.net/ProjectRoadmap.htm

The Documentation page has been updated with specifications for the Themes and the Ajax Architectural Document.

https://woodstock.dev.java.net/Documentation.htm

I have attached updated Release Notes for Build 2.  We are still working on getting the timing down so the notes will be in the build itself, but until that happens I will keep posting them either in the announcement or on the download page.  You can always get the latest version from the CVS tree if you Update your workspace.

Thanks,
Project Woodstock Team


Woodstock 4.0 Components Release Notes

Woodstock 4.1 JSF Components Release Notes

 

4.1 Build 2 (04/06/2007)

New Features

Bug Fixes

 

4.1 Build 1 (03/23/2007)

New Features

Bug Fixes

 

4.0.1 GA  (02/15/2007)

IE7 Button width issue

When displayed in IE7, the button component might be rendered with an incorrect width. This problem occurs when the button is placed using absolute positioning.For example, Netbeans with Visual Web Pack, uses absolute positioning to place components in Grid Layout Mode, and in such situation this problem could occur.

IE7 expects a value to be specified for the width of buttons. If a width attribute is not specified, the width is set to width:auto, which results in the button's width being set to the entire available width of the button's container element.  For example, if the button style has left=130px then the button will start at 130px left and will expand to the width of the <body>.

Workarounds

There are several workarounds that can be used in the developer's code to solve the problem.

<input name="Button2" style="position:relative; left:72px;top:18px" type="button" value="Button" />
<div style="position:absolute; left:72px; top:68px">
<input name="Button1" type="button" value="button" />
</div>
<span style="position:absolute; left:72px; top:68px">
<input name="Button1" type="button" value="button" />
</span>
<webuijsf:panelGroup binding="#{Page1.groupPanel1}" id="groupPanel1" style="position:absolute; left:240px; top:168px">
<webuijsf:button binding="#{Page1.button1}" id="button1" text="Button"/>
</webuijsf:panelGroup>