jqGrid换行文本内联编辑

时间:2013-09-27 09:07:06

标签: jquery css jqgrid

在内联编辑单元格时是否可以包装单元格的文本?我尝试了几件但没有效果:

<style type="text/css">
   .ui-jqgrid tr.jqgrow td {
       white-space: normal !important;
   }

   .ui-jqgrid td textarea {
        white-space: normal !important;
   }
</style>

第一个设置在非编辑模式下工作,第二个设置无效(在编辑时)。

1 个答案:

答案 0 :(得分:1)

只需设置

edittype: 'textarea' 

(代替文本),不需要CSS。您甚至可以指定行和列:

editoptions:{rows:"2",cols:"10"}