hi,
I have just started using
Struts, my problem is using Maps present in a form bean to and fro, from the
jsp using <html:select> tag
Ex: -
ActionForm
----------
class MyForm extends ActionForm {
private Map<
String, String> selectFields;
public void setSelectFields(Map<String, String> selectFields){
this.selectFields = selectFields;
}
public Map<String, String> getSelectFields() {
return this.selectFields;
}
}
I am a beginner in the world of struts and am unable to releate to available resources on the net. An example of the usage would really help. Thanks.