When
you say it isn't working, what do you mean? It's not being
set?
Do you
have a getter and setter for your check property?
void
setCheck(boolean check)
boolean isCheck()
-----Original Message-----
From: ricardolecheta [mailto:[EMAIL PROTECTED]
Sent: Friday, January 09, 2004 7:58 AM
To: opensymphony-webwork
Subject: [OS-webwork] CheckboxHi, I'm a WebWork beginnner,I have the following Action,public class TagTestAction implements Action
{
boolean check;
...
}and...#tag(Checkbox "label='checkbox test'" "name='check'" "fieldValue=check" "size=50")if the check property is true, the ckeckbox in my view will be checked...and when I check it in the html page and submit my form, the attribute in my action will be true....but this isn't working...can anyone help me?thanks