2017-02-26 54 views
1

我試圖使用:https://github.com/markcell/jquery-tabledit/blob/master/README.md,並設置它的發送數據到表單,不幸的是它當前不包括標識符在表單發佈,將感激任何幫助。jquery-tabledit不發送標識符

我使用的網站上的例子: 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

我剛剛有同樣的問題,但我想通了。您是使用較舊的示例還是來自其他網站?我通過尋找內聯編輯來識別它,但我無法再找到它。

反正你想改變

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

看起來你必須保持<th>在頭(其中它理應屬於)

+0

感謝很多答案。你節省了我的時間 –