在Windows应用程序中,我们经常会看到在一行中可见的表格数据。列具有一些最大宽度,文本的其余部分被截断。通过在所述列上单击并拖动鼠标,可以使所述文本可见。
可以通过JavaScript / jQuery或(不太可取的)devexpress在Web中模拟此行为吗?
换句话说,我怎样才能扩展像......
<table>
<tr>
<td>column data</td>
<td>column 2 data lots of text where this text does not fit on screen and is truncated</td>
</tr>
</table>