私はDatatablesを少しだけ使用しています。bStateSave
前の読み込みからのページネーションの長さを保存するには、変数を true に設定する必要があります。これを行うと、
TypeError: 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 に変更するとすぐに、エラーは発生しません。