DataTables ColumnFilterWidgets

DataTables ColumnFilterWidgets

rpatelrpatel Posts: 9Questions: 0Answers: 0
edited February 2014 in General
I am trying to use the ColumnFilerWidgets Plugin in my Web App.

Here is the current code

$(function () {
webApp.datatables(),
$("#Table1").dataTable({
"bPaginate": true,
"bServerSide": true,
"sAjaxSource": "GetDatax",
"bFilter": true,
"bSort": true,
aoColumnDefs: [{ bSortable: !1, aTargets: [4] }], iDisplayLength: 10, aLengthMenu: [[15, 30, 50, -1], [15, 30, 50, "All"]]
}), $(".dataTables_filter input").addClass("form-control").attr("placeholder", "Search")
});


However When I add the following line: "sDom": 'W<"clear">lfrtip' nothing happens. Am I using is wrong?

Replies

  • rpatelrpatel Posts: 9Questions: 0Answers: 0
    Anybody Know?
  • allanallan Posts: 63,498Questions: 1Answers: 10,471 Site admin
    Please link to a test case and required in the forum rules.

    Allan
This discussion has been closed.