我需要对我的网格进行帮助。它没有滚动功能。有人能帮我在wijmo表格中添加滚动功能吗?
jquery网格表如下:
<div id="tabs-1">
<table id="all_grid" data-bind="wijgrid: { data: data,
allowEditing: true,
allowPaging:true,
allowColSizing:true,
allowSorting:true,
showFilter: true,
pageSize:20,
// columns: [{headerText: 'Title'}, {headerText: 'Pub Date'}, {headerText: 'Sent'},{headerText: 'Link'}],
}">
</table>
</div>发布于 2013-06-24 13:26:02
为了启用滚动功能,您需要根据需要将Wijgrid的scrollMode属性设置为“自动”或水平等。默认情况下,它被设置为none。有关它的更多详细信息,请参阅以下链接:
示例:http://wijmo.com/demo/explore/?widget=Grid&sample=Scrolling
文档链接:http://wijmo.com/wiki/index.php/Grid#scrollMode
https://stackoverflow.com/questions/17223580
复制相似问题