请检查图像以供参考。我的要求是限制单元格中的此文本,以便即使文本很长也不会删除下一个单元格的分隔线。我在 gwt 2.1 中使用富文本编辑器。我不希望一个单元格数据溢出到另一个单元格中破坏其边界
有什么建议么
谢谢
您可以将 CSS 样式应用于您的表格。例如:
.myTable td {
word-wrap: break-word;
white-space: normal;
}
可以使用以下方法完成:
label.setOverflow(Overflow.HIDDEN);
隐
public static final Overflow HIDDEN 超出小部件宽度或高度的内容被剪裁(隐藏)。
你试过用这个吗?
pricate ListGrid grid;
grid.setFixedRecordHeights(false); // Will make sure that your rows can be resized.
grid.setWrapCells(true); // Will make the text at the end of your rows wrap to the next line