jquery-tabledit不发送标识符

时间:2017-02-26 17:42:16

标签: javascript jquery jquery-plugins tabledit

我正在尝试使用:https://github.com/markcell/jquery-tabledit/blob/master/README.md,并将其设置为将其发送到表单,遗憾的是它目前不包含表单中的标识符,如果有任何帮助,我将不胜感激。< / p>

我正在使用网站上的示例: HTML代码:

<table class="table table-striped table-bordered" id="example">
<caption>
Click the table cells to edit.
</caption>
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
  <th scope="row">1</th>
  <td>Mark</td>
  <td>Otto</td>
  <td>@mdo</td>
</tr>
<tr>
  <th scope="row">2</th>
  <td>Jacob</td>
  <td>Thornton</td>
  <td>@fat</td>
</tr>
<tr>
  <th scope="row">3</th>
  <td>Larry</td>
  <td>the Bird</td>
  <td>@twitter</td>
</tr>

   

$('#example').Tabledit({
            url: 'example.php',
            editButton: false,
            removeButton: false,
            columns: {
                identifier: [0, 'id'],
                editable: [[1, 'First Name'],[2, 'Last Name'],[3,  'Username', '{"1": "@mdo", "2": "@fat", "3": "@twitter"}']]
            }
        });

帖子中唯一的数据是已编辑的字段和操作。将标识符放入帖子的任何帮助都将非常感激。你可以告诉新人。

1 个答案:

答案 0 :(得分:1)

我遇到了同样的问题,但我明白了。您使用的是旧版本或其他网站吗?我从寻找内嵌编辑器中认识到这一点,但我再也找不到了。

无论如何,你想改变

<th scope="row">2</th><td scope="row">2</td>

看起来你必须在标题中保留<th>(它应该属于哪个地方)