我正在使用jquery数据表1.10,并试图搜索和过滤一个表。我想使用搜索文本框搜索两列,并使用复选框过滤第三列的结果。这是我的数据表:
var url = '@Url.Action("SupportClass1Search", "SupportClass1")';
$('#SupportClass1DataTable').DataTable({
"serverSide": true,
"processing": true,
"ajax": url,
"ordering": true,
"dom": '<"top"prl<"clear">>t<"bottom">pi<"clear">',
"pageLength": 10,
"autoWidth": false,
"columns": [
{ // create a link column using the value of the column as the link text
"data": "SupportClass1Id",
"width": "20%",
"render": function (oObj) { return "<a href='#' onclick='editItem(\"" + oObj + "\")'>" + oObj + "</a>"; },
},
{ "data": "SupportClass1Name", "sWidth": "70%" },
{ // convert boolean values to Yes/No
"data": "Active",
"width": "7%",
"render": function (data, type, full) {
if (data == true)
{ return 'Yes'; }
else
{ return 'No'; }
}
}
]
})
我希望根据复选框值筛选第三列(活动)。下面的JS可以过滤表,但当我输入“是”或“否”时,不会选择活动列:
// use an outside search input
oTable = $('#SupportClass1DataTable').DataTable();
$('#btnSearch').click(function () {
oTable.search($('#txtSearch').val()).draw();
})
另外,我更喜欢单独搜索活动列,类似于这样:
oTable
.column(2).search('Yes')
.columns([0,1]).search($('#txtSearch').val())
.draw();
但这不管用。任何帮助都是非常感谢的。
发布于 2014-09-02 12:00:27
我想通了。使用1.10版本时,您必须使用ajax.data:
https://datatables.net/reference/option/ajax.data
在初始化过程中,我使用以下方法为ajax调用添加了一个额外的参数:
"ajax": {
"url": url,
"data": function (d) {
d.activeOnly = $('#activeOnly').is(':checked');
}
},
以下是我的完整初始化:
$(document).ready(function () {
// initialize the data table
var url = '@Url.Action("SupportClass1Search", "SupportClass1")';
$('#SupportClass1DataTable').DataTable({
"serverSide": true,
"processing": true,
"ajax": url,
"ordering": true,
"dom": '<"top"prl<"clear">>t<"bottom">pi<"clear">',
"pageLength": 10,
"autoWidth": false,
"ajax": {
"url": url,
"data": function (d) {
d.activeOnly = $('#activeOnly').is(':checked');
}
},
"columns": [
{ // create a link column using the value of the column as the link text
"data": "SupportClass1Id",
"width": "20%",
"render": function (oObj) { return "<a href='#' onclick='editItem(\"" + oObj + "\")'>" + oObj + "</a>"; },
},
{ "data": "SupportClass1Name", "sWidth": "70%" },
{ // convert boolean values to Yes/No
"data": "Active",
"width": "7%",
"render": function (data, type, full) {
if (data == true)
{ return 'Yes'; }
else
{ return 'No'; }
}
}
]
})
oTable = $('#SupportClass1DataTable').DataTable();
// this is a checkbox outside the datatable
// whose value I wanted to pass back to my controller
$('#activeOnly').click(function () {
oTable.search($('#txtSearch').val()).draw();
})
$('#btnSearch').click(function () {
oTable.search($('#txtSearch').val()).draw();
})
});
我使用一个类作为DataTable的模型。我还在这里添加了activeOnly参数/属性:
/// <summary>
/// this class provides a model to use with JQuery DataTables plugin
/// </summary>
public class jQueryDataTableParamModel
{
#region DataTable specific properties
/// <summary>
/// Request sequence number sent by DataTable,
/// same value must be returned in response
/// </summary>
public string draw { get; set; }
/// <summary>
/// Number of records that should be shown in table
/// </summary>
public int length { get; set; }
/// <summary>
/// First record that should be shown(used for paging)
/// </summary>
public int start { get; set; }
#endregion
#region Custom properties
public bool activeOnly { get; set; }
#endregion
}
这是我的控制器:
public ActionResult SupportClass1Search(jQueryDataTableParamModel param)
{
// initialize the datatable from the HTTP request
var searchString = Request["search[value]"];
var sortColumnIndex = Convert.ToInt32(Request["order[0][column]"]);
var sortDirection = Request["order[0][dir]"]; // asc or desc
// query the database and output to a viewmodel
var lvm = new SupportClass1SearchViewModel { };
if (String.IsNullOrEmpty(searchString))
{
lvm.SupportClass1List = supportClass1Service.GetAll();
}
else
{
lvm.SupportClass1List = supportClass1Service.FindBy(t => (t.SupportClass1Name.Contains(searchString))
&& (t.Active.Equals(param.activeOnly) || param.activeOnly == false));
}
// do a bunch of stuff and retunr a json string of the data
return MyJson;
}
现在,当我单击activeOnly复选框并重新绘制将true或false传递给控制器的表时。
发布于 2014-08-30 10:58:00
您可能希望使用列过滤器插件http://jquery-datatables-column-filter.googlecode.com/svn/trunk/index.html ( jQuery Datatables插件),因为它可以完成您所需要的大部分工作。下面是jsFiddle演示中的一个示例。在本例中,我使用两个字段进行文本过滤,第三个字段是下拉列表。
oTable = $("#myTable").dataTable({
bInfo: false,
bSort: false,
bSortable: false,
"data": arrayData,
"columns": [{
"data": "Emp"
}, {
"data": "Name"
}, {
"data": "Role"
}, {
"data": "Notes"
}]
}).columnFilter({
sPlaceHolder : "head:before",
aoColumns : [{
type : "text"
}, {
type : "text"
}, {
type : "select",
values : arrayRoles
}]
});
https://stackoverflow.com/questions/25585602
复制相似问题