From: "Hyrum" <[EMAIL PROTECTED]>
Here's the problem: My read-only view has the box checked. When I forward
to the editable view, it's corresponding Controller calls reset and wipes
out that checkboxes value so that when it displays, it is unchecked.
Write your reset method so that it only resets the checkboxes if the form was submitted. For example:
if ( request.getMethod().equals( "POST" ) ) { set( "accounts", new String[]{} ); set( "includeDetail", Boolean.FALSE ); } }
I make no claims to this being the "right" or "best" way... but it does work.
-- Wendy Smoak
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]