0

我想知道如何在 jqgrid 中显示滚动条。

我使用 jqgrid 显示一些带有 textarea 的数据

     colModel:[
   {name:'mob_id',index:'mob_id', editable:false,width:30},
   {name:'cse_id',index:'cse_id', editable:true, edittype:'text',width:30},
   {name:'sub_id',index:'sub_id',edittype:'text',editable:true,width:30},
   {name:'avg_user_rating',index:'avg_user_rating',editable:true,edittype:'textarea',editoptions:{rows:'3',cols:'20'},width:30}]

textarea 显示,但没有滚动条。

提前致谢

4

1 回答 1

0

add

.ui-jqgrid tr.jqgrow td {
  white-space: normal !important;
  height:auto;
  vertical-align:text-top;
  padding-top:2px;
}

inside your css file. it should show the entire content. if you want scrollbar, just set the height to a fixed number of pixels i think.

于 2011-03-23T09:46:27.353 回答