Hi All,
I am using the
Struts tag in my
JSP in which i am using the array of checkbox to which i want to check it on pageload.
JSP Code:
<html:checkbox property="funcSelect" value='Dyanamic' />
FormBean:
Private
String[] funcSelect;
/**
* @return Returns the funcSelect.
*/
public String[] getFuncSelect() {
return funcSelect;
}
/**
* @param funcSelect The funcSelect to set.
*/
public void setFuncSelect(String[] funcSelect) {
this.funcSelect = funcSelect;
}
I have checked all the entries in the struts-config all are surely right. because with the array of checkbox i am also using a different single check box and populating that check value from the corresponding ActionClass of the JSP and if the value is same then that checkbox is checked.but when we populate the value of array of checkboxes from the ActionClass and even all the values of the checkboxes are same the array of checkboxes not get checked.......
please provide me the solution if u have....
thx in advance