DATATABLE 无法设置未定义的属性(设置“_DT_CellIndex”)

发布于 2025-01-11 15:48:08 字数 929 浏览 0 评论 0原文

我使用循环数组时进入数据表时出现问题 列相等,thead 和 tbody 仍然存在问题。 我从命令获取数据并使用数组,我希望在 datatable.output 中输出正在工作,但 datatable 短路和搜索选项不起作用。

<div class="m-t-25">
  <table id="data-table" class="table dataTable">
    <thead>
      <tr>
        <?php
        foreach ($output[0] as $clave=>$fila) {
          echo "<th>".$fila."</th>";
        }
        ?>
        <th>Action</th>
      </tr>
    </thead>
    <tbody>
    <?php
    $output = array_slice($output, 2); 
    foreach ($output as $fila) {
      echo "<tr>";
      foreach ($fila as $elemento) {
        echo "<td>".$elemento."</td>";
      }
      echo '<td><select class="act">';
      echo '<option value="watch" selected="">graph</option>';
      echo '</select></td>';
      echo "</tr>";
    } 
    ?>
  </tbody>

issue getting in datatable while i m using loop array
Column are equal thead and tbody still getting issue.
i m faching data from command and using array i want output in datatable.output is working but datable shorting and search option is not working.

<div class="m-t-25">
  <table id="data-table" class="table dataTable">
    <thead>
      <tr>
        <?php
        foreach ($output[0] as $clave=>$fila) {
          echo "<th>".$fila."</th>";
        }
        ?>
        <th>Action</th>
      </tr>
    </thead>
    <tbody>
    <?php
    $output = array_slice($output, 2); 
    foreach ($output as $fila) {
      echo "<tr>";
      foreach ($fila as $elemento) {
        echo "<td>".$elemento."</td>";
      }
      echo '<td><select class="act">';
      echo '<option value="watch" selected="">graph</option>';
      echo '</select></td>';
      echo "</tr>";
    } 
    ?>
  </tbody>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文