在Datatables中将bStateSave设置为true时,'TypeError:oColumn未定义'

时间:2013-10-02 16:36:28

标签: javascript jquery jquery-datatables

我现在一直在使用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,我就不会收到错误。

0 个答案:

没有答案