How to get hidden field value in jQuery DataTable

My code is below

$("#tblAdminUsers").dataTable({
                bProcessing: true,
                sAjaxSource: '@Url.Action("FetchAdminUsers", "Admin")',
                aoColumns: [
                     { sTitle: "Id", bSortable: false, "bVisible": false },
                     { sTitle: "Email", bSortable: false, },
                     { sTitle: "Location", bSortable: false, },
                      { sTitle: "Status", bSortable: true, },
                       { sTitle: "UserType", bSortable: false, },

                     {
                         sTitle: "Actions",
                         bSortable: false,
                         mRender: function (nRow, aData, iDisplayIndex) { return '<i class="ui-tooltip fa fa-pencil actions clsEdit" style="font-size: 22px;" data-original-title="Edit" ></i> <i class="ui-tooltip fa fa-trash-o actions clsDelete" style="font-size: 22px;" data-original-title="Delete"></i>'; }
                     }
                ]

             });

My problem is how to get the value of the hidden field (here it is Id) on the edit or delete button click

+4
source share
1 answer

Using data 1.10:

 var row_that_you_want = 1 //you need to determine this how ever you like
 var table = $('#tblAdminUsers').DataTable()
 var column_data = table.row(row_that_you_want).data()[0]
+6
source

Source: https://habr.com/ru/post/1543985/


All Articles