我已经使用了一段时间的 Datatables。我需要将bStateSave
变量设置为 true 以保存上一次加载的分页长度。当我这样做时,我得到一个
类型错误:oColumn 未定义'
我已经尝试了很多东西;到目前为止没有运气。
这是标记;我把它做成了一个非常基本的表格:
<table border="1" cellspacing="1" cellpadding="3" id="system_statuses_table" class="display">
<thead>
<tr>
<th><strong><font size="2">System</font></strong></th>
<th><strong><font size="2">Status</font></strong></th>
<th><strong><font size="2">Notes</font></strong></th>
<th><strong><font size="2">Environment</font></strong></th>
<th><strong><font size="2">Project</font></strong></th>
</tr>
</thead>
<tbody>
<tr>
<td>System Value</td>
<td>Status Value</td>
<td>Notes Value</td>
<td>Environment Value</td>
<td>Project Value</td>
</tr>
</tbody>
</table>
<script>
Ext.onReady(function() {
$j('#my_table').dataTable({
"sPaginationType": "full_numbers",
"bStateSave": true
});
});
</script>
一旦我将 bStateSave 更改为 false,我就不会收到错误消息。