1、servermodule中customcss中加入。
<style type="text/css">
.x-grid-cell-inner {
white-space: initial;
}
</style>

本文介绍如何在ExtJS框架中修改表格单元格的样式,使其支持文本换行,通过在servermodule的customcss中加入特定的CSS代码实现。
1、servermodule中customcss中加入。
<style type="text/css">
.x-grid-cell-inner {
white-space: initial;
}
</style>

1599