0

我有一个长文本要显示在 struts2 display:column 中。因此,我截断它,因为它并不那么重要。当光标位于该单元格上时,如何使用常规 html 工具提示(标题/alt)装饰每个单元格?这样我仍然可以按需向用户显示完整的文本。

我可以扩展 display:column 标签吗?

<display:column sortable="true" property="codeIdentification"  />

谢谢,

4

1 回答 1

0

好的,我使用了一个表格装饰器,它用 span 和 title 属性封装了文本(codeIdentification)。IE

<span title="xxx">codeIdentification</span>

充足的。

您可以在 display:column 标签中定义装饰器。

<display:table name="dataPage" id="process" export="false" 
               decorator="com.mysite.decorator.CodeStringFormatter" 
               requestURI="dataList.action"
               sort="list"
               pagesize="30"
               >

当然,在这个装饰器类中你需要创建一个 getter 方法。在我的情况下是 getCodeIdentificatin()

这就是工作。充足的。

于 2013-07-15T12:15:06.303 回答