Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
am using jquery datatable of new version,i want to add column filter for every column seperately but am not getting any result.this is the code am using,


<pre lang="cs">var oTable=$(&quot;#example&quot;).dataTable({
    &quot;bJQueryUI&quot;: true,
    &quot;sScrollX&quot;: &quot;100%&quot;,
    &quot;bFilter&quot;: false,
           &quot;aLengthMenu&quot;: [[10, 25, 50, -1], [10, 25, 50, &quot;All&quot;]],
    &quot;iDisplayLength&quot;: 10,
    &quot;sPaginationType&quot;:&quot;full_numbers&quot;
}).columnFilter({
    &quot;aoColumns&quot;: [
        { type: &quot;text&quot; }, null, null, null, null, null, null

    ]<pre lang="Javascript"></pre>
})</pre>

i have 7 columns,i want to add individual column filter for first column,i dont know where am missing.can anyone suggest
Posted
Comments
Jameel VM 12-Jul-13 8:22am    
Please format the question properly

1 solution

Here is good article about how to do that.Check this :

jQuery DataTables Advanced Filtering in ASP.NET MVC (jQuery DataTables and ASP.NET MVC Integration - Part V)[^]

I hope this will help to you.
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900