Project Woodstock Components Release Notes

4.3 Build 2  (04/25/2008)

New Features

Bugs Resolved/Fixed

 

4.3 Build 1  (04/15/2008)

New Features

Bugs Resolved/Fixed

 



4.2 Build 5  (03/28/2008)
    Promoted to GA  (04/29/2008)

New Features

Bugs Resolved/Fixed


4.2 Build 4  (03/04/2008)

New Features

Bugs Resolved/Fixed


4.2 Build 3  (02/25/2008)

New Features

Bugs Resolved/Fixed

 

4.2 Build 2  (02/012/2008)

New Features

<%@ taglib prefix="jsfx" uri="http://java.sun.com/jsf/extensions/dynafaces" %>
<f:view>
<html>
  <head>
    <jsfx:scripts />
  </head>
  <body> <!-- body omitted --> </body>
</html>
</f:view>

Deprecated attributes

Bugs Resolved/Fixed



4.2 Build 1  (01/23/2008)

New Features

Deprecated attributes

Bugs Resolved/Fixed



4.1 (GA) Build 15  (11/02/2007)

New Features

Bugs Resolved/Fixed

 

4.1 Build 14  (10/12/2007)

New Features

Bugs Resolved/Fixed

4.1 Build 13  (09/28/2007)

New Features

Calendar Changes

Bugs Resolved/Fixed

4.1 Build 12  (09/14/2007)

Themes

Bugs Resolved/Fixed

 

4.1 Build 11  (08/31/2007)

New Features

Bugs Resolved/Fixed

 

4.1 Build 10  (08/15/2007)

New Features

Bugs Resolved/Fixed


4.1 Build 9
   (07/27/2007)

New Features

Bugs Resolved/Fixed

 

4.1 Build 8   (07/13/2007)

Issues/Regressions

New Features

Bugs Resolved/Fixed

 

4.1 Build 7   (06/15/2007)

New Features

Bugs Resolved/Fixed

 

4.1 Build 6  (06/01/2007)

New Features

Bugs Resolved/Fixed

4.1 Build 5   (05/18/2007)

New Features

Bugs Resolved/Fixed

4.1 Build 4   (05/06/2007)

New Features

Bugs Resolved/Fixed

 

4.1 Build 3   (04/20/2007)

New Features

Deprecated attributes

Deprecated client side JavaScript functions

Bugs Resolved/Fixed

Anchor component issue

RadioButton component issue/regression

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>