Thanks for reply
in my jsp proerties are like this
itemcode itemname checkbox ADDMORE
when i click addmore one more row added in jsp using javascript,
itemcode itemname checkbox
itemcode itemname checkbox like this
checkbox define like this
html:checkbox property="percent" value="true"
my Action form
public String[] getPercent() {
return percent;
}
public void setPercent(String[] percent) {
this.percent=percent;
}
public String[] percent;
public void reset(ActionMapping mapping, HttpServletRequest request)
{
}
when the checkbox is checked it takes the value true, it works fine,
when it is not cheked i want to take false,
how it is,keep in mind it is array,
ex may be it will come true,false,false,true,false like this
Help me
Thanks in advance