如何根据其他列的值在显示:列中显示不同的图像?
我正在使用显示标签在我的 jsp 页面中显示表格。我需要根据其他列的值在表的一列中显示不同的图像。
下面是我的 jsp 页面中的代码片段:
<s:if test="appStatusList.size() != 0">
<display:table name="appStatusList" class="its">
<display:caption>App Status</display:caption>
<display:column property="currentStatus" title="Current Status" />
<display:column property="updateDate" title="Update Date" />
<display:column > <img src="/AppUpdatePortal/images/delete.png" /></display:column>
</display:table>
</s:if>
How can i change image src based on other columns value。请帮忙。
谢谢 乔蒂
i am using display tag for showing table in my jsp page. I need to show different images in one column of table based on other column's value.
Below is the code snippet from my jsp page:
<s:if test="appStatusList.size() != 0">
<display:table name="appStatusList" class="its">
<display:caption>App Status</display:caption>
<display:column property="currentStatus" title="Current Status" />
<display:column property="updateDate" title="Update Date" />
<display:column > <img src="/AppUpdatePortal/images/delete.png" /></display:column>
</display:table>
</s:if>
How can i change image src based on other column value. Please help.
Thanks
Jyoti
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请阅读http://www.displaytag.org/1.2/tut_implicitobjects.html。如果您向
display:table
标记添加 id 属性,您就可以访问列表的当前对象。Read http://www.displaytag.org/1.2/tut_implicitobjects.html. If you add an id attribute to your
display:table
tag, you may have access to the current object of the list.这个怎么样?
How about this?