2017-02-26 17 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

私はちょうど同じ問題を抱えていましたが、私はそれを理解しました。以前の例を使用していますか、別のWebサイトから使用していますか?私はインラインエディタを探すことからそれを認識しますが、私は再びそれを見つけることができません。あなたが(それはおそらく属している)ヘッダに答えて

+0

おかげで多くのことを<th>を維持するために持っているよう

とにかく、あなたは<td scope="row">2</td>

<th scope="row">2</th>を変更したいが見えます。あなたは私の時間を救った –

関連する問題