jqGrid的文本区域中滚动条在哪里?
我想知道如何在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加
到你的 css 文件中。它应该显示全部内容。如果你想要滚动条,只需将高度设置为固定的像素数即可。
add
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.