我有 ShowAction java 类,成功时会显示类 JSP 页面,该 jsp 页面包含
<bean:define id="stateTypes" name="sessionData" property="stateTypes" />
<html:select property="issueStateCode" styleClass="smallDropInput" tabindex="5" styleId="myId">
<html:options collection="stateTypes" property="value" labelProperty="label" />
</html:select>
在我的 ShowAction java 类中,我正在为<html:select>
(JSP) 设置值,如下所示:
sessionData.setStateTypes(TypeHelper.getTypeList(TypeHelper.TYPE_JURISDICTION,
sessionData.getCarrierId(), sessionData.getProductId()));
我想从列表中设置一个特定值,<html:select>
当显示 JSP 时,该值会被选中或自动填充。