如何获取Jquery DataTable中的隐藏字段的值
问题描述:
我的代码在下面列出
$("#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>'; }
}
]
});
我的问题是,如何在单击编辑或删除按钮时获取隐藏字段的值(此处为ID)
my problem is, how to get the value of the hidden field(here it is Id) on edit or delete button click
答
使用数据表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]