使用 html 检索 id 时出现问题:select
我的 jsp 中每行都有一个表,一个组合,问题是我无法在提交期间获取组合中选择的值 我认为问题在于属性
JSP:的定义
<logic:notEmpty name="gererUtilitaireForm" property="listUtilitaireBean">
<%int i=0; %>
<logic:iterate id="listUtilitaireBean" name="gererUtilitaireForm" property="listUtilitaireBean" type="com.basesav.beans.UtilitaireBean">
...
<td>
<html:select property="listUtilitaireBean.typeLien" value="<%=typeLien.toString() %>">
<html:optionsCollection name="listUtilitaireBean" property="listTypeLienDoc" value="idTypeLienDoc" label="libelle" />
</html:select>
</td>
...
I have in my jsp with a table on each line a combo, the problem is that I can not get the value selected in my combo during a submit
I think the problem is the definition of property
JSP:
<logic:notEmpty name="gererUtilitaireForm" property="listUtilitaireBean">
<%int i=0; %>
<logic:iterate id="listUtilitaireBean" name="gererUtilitaireForm" property="listUtilitaireBean" type="com.basesav.beans.UtilitaireBean">
...
<td>
<html:select property="listUtilitaireBean.typeLien" value="<%=typeLien.toString() %>">
<html:optionsCollection name="listUtilitaireBean" property="listTypeLienDoc" value="idTypeLienDoc" label="libelle" />
</html:select>
</td>
...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要从 select 获取数据,您应该在
html:select
上添加name
属性。例如:
To get data from select you should add
name
property on yourhtml:select
.For example: