Hi, I have a dropdown list getting from a collection in database, I need to set one of the value in this dropdown as default, how do i do it via STruts tag; Many thanks for your help.
ps: in hard code select, just added "selected" to one to the option, but not sure how to approach this
Sometime prior to this portion of the JSP code (preferably in your Action class), simply set the value of the regionCode property in your form bean to the value theat you want as the default:
myForm.setRegionCode("xx");
Struts automatically selects the option that matches the value of the property specified in the <html:select> tag.