jqGrid的文本区域中滚动条在哪里?

发布于 2024-10-19 04:14:02 字数 480 浏览 1 评论 0原文

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

我使用 jqgrid 来显示一些带有文本区域的数据,

     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}]

文本区域已显示,但没有滚动条。

提前致谢

I want to know how to display the scroll bar in jqgrid.

i use the jqgrid for display some data with 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}]

the textarea is display but there is no scroll bar.

thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

想挽留 2024-10-26 04:14:02

添加

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

到你的 css 文件中。它应该显示全部内容。如果你想要滚动条,只需将高度设置为固定的像素数即可。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文