Hi, I'm a WebWork beginnner,
I have the following Action,
public class TagTestAction implements Action
{
boolean check;
...
}
{
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