Using Pagination along with Column Filtering

Using Pagination along with Column Filtering

NewinthezoneNewinthezone Posts: 22Questions: 0Answers: 0
edited April 2012 in General
Hi
I am trying to use the custom pagination plugin along with the Individual column filtering plugin.
I am confused about how my to implement this in the main function :

[code]
$(document).ready(function () {
var oTable = $('#Table1').dataTable({

"sPaginationType": "scrolling"
{ "Olanguage":{
"sSearch": "Search all columns:"
}
}
[/code]

How do i need to place the paginationtype and ssearch code.

When I use them separately (pagination and ssearch) they work fine.

Replies

  • allanallan Posts: 63,498Questions: 1Answers: 10,471 Site admin
    edited April 2012
    You've got a Javascript error there - are you not getting an error reported in the Javascript console of your browser? You are missing a comma after "scrolling". Oh, and two closing brackets.

    Allan
  • NewinthezoneNewinthezone Posts: 22Questions: 0Answers: 0
    Thanks got it to work :)
This discussion has been closed.