Struts2:在表中每行的bean类onclick复选框中设置值

发布于 2024-07-30 17:41:35 字数 607 浏览 3 评论 0原文

在我的 struts2 应用程序中,我有一个迭代器和一个包含类似对象的列表 -

<s:iterator value="listOfObjects">
<tr>
 <td><s:property value="item" /></td>
 <td><s:property value="category" /></td>
 <td><s:property value="quantity" /></td>
 <td><s:property value="brand" /></td>
 <td><s:checkbox name="deleteRow" onclick="submit()"/></td>  
</tr>
</s:iterator>

上面创建了一个表,每行的最后一列都有一个复选框。 现在,单击任何我想在我的 bean 类中(仅)设置相应行的值的复选框。 我尝试了很多,但我得到的是每行的值,而不是用户单击了复选框的特定行的值。 是否可以。 如果是的话请帮忙。 提前致谢。

In my struts2 application I have an iterator and a list with objects like -

<s:iterator value="listOfObjects">
<tr>
 <td><s:property value="item" /></td>
 <td><s:property value="category" /></td>
 <td><s:property value="quantity" /></td>
 <td><s:property value="brand" /></td>
 <td><s:checkbox name="deleteRow" onclick="submit()"/></td>  
</tr>
</s:iterator>

The above creates a table with a checkbox in the end column of each row. Now, Onclick any checkbox I want to set the values of corresponding row (only) in my bean class. I tried a lot but I am getting values of each row rather that values of only that particuler row whose checkbox user has clicked. Is it possible. If yes then please help. Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

耀眼的星火 2024-08-06 17:41:35

如果deleteRow复选框的值足够好(基于对象的toString方法),那么您应该能够使用setter方法在Action类中创建一个deleteRow属性并将其解析出来。

我想您可以在 deleteRow 复选框上设置一个值表达式,可以使用当前对象的 toString() ,也可以手动将某种格式化的值列表(逗号分隔或其他)放入其中。 如果您为 s:iterator 提供了一个 id,则可以在 s:checkbox 的 value 属性中引用它。

If the value of the deleteRow checkbox is good enough (based on the toString method of your object), then you should be able to just create a deleteRow property in your Action class with a setter method and parse it out.

I suppose you could set a value expression on the deleteRow checkbox, either using the toString() of the current object, or putting some kind of formatted list (comma separated or something) of the values in there by hand. If you gave the s:iterator an id, you could reference that in the value attribute of the s:checkbox.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文