在内联编辑单元格时是否可以包装单元格的文本?我尝试了几件但没有效果:
<style type="text/css">
.ui-jqgrid tr.jqgrow td {
white-space: normal !important;
}
.ui-jqgrid td textarea {
white-space: normal !important;
}
</style>
第一个设置在非编辑模式下工作,第二个设置无效(在编辑时)。
答案 0 :(得分:1)
只需设置
edittype: 'textarea'
(代替文本),不需要CSS。您甚至可以指定行和列:
editoptions:{rows:"2",cols:"10"}