0

我需要帮助我的网格。它没有滚动功能。谁能帮我在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>
4

1 回答 1

0

为了启用滚动,您需要根据您的要求将 Wijgrid 的 scrollMode 属性设置为“自动”或水平等。默认情况下,它设置为无。有关它的更多详细信息,您可以参考以下链接:

示例:http ://wijmo.com/demo/explore/?widget=Grid&sample=Scrolling

文档链接: http ://wijmo.com/wiki/index.php/Grid#scrollMode

于 2013-06-24T05:26:01.713 回答