Hi wiggles,
Where should i set the command object ? Or please could you post your codes about formController, servlet and jsp related rows with this issue.
Cheers
Code:
protected Map referenceData(HttpServletRequest request, Object command, Errors errors, int page) throws Exception {
if (page == 0) {
Map countryMap = new HashMap();
countryMap.put("countries", countryService.findAllCountries());
return countryMap;
}
if (page == 1) {
Country country = (Country) command;
Map cityMap = new HashMap();
cityMap.put("cities", cityService.findCityByCountry(country));
return cityMap;
}
}