web-dev-qa-db-ja.com

ビューからコントローラーへのJquery Datatablesのすべてのデータのバインド

ViewのデータをControllerにバインドしているので、後でデータを使ってやりたいことができます。私のビューでは、dataTable@Html.EditorForModel()を使用してビューをレンダリングします。

見る

<form action="xx" method="POST">
<table id="myTable" class="table table-bordered table-hover table-striped">
    <thead>
        <tr>
            <th></th>
            <th>
                @Html.DisplayNameFor(model => model.Field1)
            </th>
            <th>
                @Html.DisplayNameFor(model => model.Field2)
            </th>
            <th>
                @Html.DisplayNameFor(model => model.Field3)
            </th>
        </tr>
    </thead>
    <tbody>
    @if (Model != null)
    {
        @Html.EditorForModel()
    }
    </tbody>
    <tfoot></tfoot>
</table>

<input type="submit" value="submit" />
</form>

脚本

$("#myTable").dataTable({
        searching: false,
        ordering: false,
        responsive: true,
        "bLengthChange" : false,
        "pageLength": 20,
        "bStateSave": true
    });

コントローラ

[HttpPost]
public ActionResult MyAction(List<MyModel> MyListModel)

この方法は、データがdataTablesの1ページ以下の場合に効果的です。 1ページ以上ある場合、マイコントローラーはList Data最初のページの場合、または何も受け取らない(null)

ViewからControllerにDataTablesのすべてのデータをバインドするにはどうすればよいですか?このバインディングには、最初のページだけでなく、すべてのページを含める必要があります

12
Mark

どのようにデータの更新をトリガーするかわかりませんので、それがボタンであると仮定すると、次のように動作します:

$('#your-button').on('click', function(e){
   var data = ('#myTable').DataTable().$('input,select,textarea').serialize();

   $.ajax({
      url: '/MyController/MyAction/',
      data: data,
      success: function(){
         alert('success');
      }, 
      error: function(){
         alert('failure');
      }
   });
});

編集1:

this に対する回答 jQuery DataTablesを使用してテーブル全体のデータを投稿する方法 で、フォームの使用を設定している場合は、次を使用します。

var table = $('#myTable').DataTable();

$('#myForm').on('submit', function(e){
   var form = this;

   var params = table.$('input,select,textarea').serializeArray();

   $.each(params, function(){
      if(!$.contains(document, form[this.name])){
         $(form).append(
            $('<input>')
               .attr('type', 'hidden')
               .attr('name', this.name)
               .val(this.value)
         );
      }
   });
});
4
Chawin

ajaxが必要ないため、 Javascript Source Data を使用して、モデルをビューに渡し、シリアル化して、ソースとして使用します

var myData = @Html.Raw(Json.Encode(Model.ListOfData));

//then pass it to the datatable   

$('#example').DataTable( {
        data: myData,
        columns: [
            { title: "col1" },
            { title: "col2" },
           etc ... 
        ]
    } );
2
Munzer

テーブル全体のデータを取得するには、data()メソッドを使用する必要があります。

$('#your-form').on('submit', function(e){
  e.preventDefault();

  var table = $('#myTable').DataTable();
  var data = table.data();

  $.ajax({
    url: '/MyController/MyAction/',
    type: 'POST',
    dataType: 'json',
    contentType: "application/json;",
    data: JSON.stringify(data),
    success: function(){
       alert('success');
    }, 
    error: function(){
       alert('failure');
    }
  });
1
Cyrille MODIANO
1
user2922221

DataTablesでは、現在のページデータのみがDOMに存在します。フォームを送信すると、現在のページデータのみがサーバーに送信されます。これに対する解決策の1つは、ajaxを介してデータを送信することです。

var myTable = $('#myTable').DataTable();

$('#your-form').on('submit', function(e){
   e.preventDefault();

   //serialize your data
   var data = myTable.$('input,select,textarea').serialize();

   $.ajax({
      url: '@Url.Action('MyAction', 'MyController')',
      data: data,
      success: function(responseData){
         //do whatever you want with the responseData
      }
   });
});
1
jomsk1e