我正在尝试用Dynatable加载 json数据看起来不错,但无法排序,这是什么问题?
这是我的 JavaScript:
$(document).ready(function() {
var dynatable = $('table').dynatable({
dataset: {
ajax: true,
ajaxOnLoad: true,
ajaxUrl: 'people.json',
records: [],
perPageDefault: 4,
perPageOptions: [4,6,8,10]
},
params: {
records: 'People'
}
}).data("dynatable");
});
和表:
<table>
<thead>
<tr>
<th>NAME</th>
<th>ADDRESS</th>
</tr>
</thead>
<tbody>
</tbody>
</table>