Drop down filter on server side ASP classic
Drop down filter on server side ASP classic
ShortyMe14
Posts: 2Questions: 0Answers: 0
Hello, Im having a problem on my code. I tried to generate the table using this code here :http://www.datatables.net/development/server-side/asp_classic for the asp classic. I followed it and it work. What i want now is to have dropdown filter. I tried to follow this http://www.datatables.net/release-datatables/examples/api/multi_filter_select.html but its not working on my end.
My code for genertating table in asp goes like this:
[code]
$(document).ready(function() {
$('#table_id').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "untitled.asp"
} );
} );
[/code]
Any help is appreciated.
Thanks
My code for genertating table in asp goes like this:
[code]
$(document).ready(function() {
$('#table_id').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "untitled.asp"
} );
} );
[/code]
Any help is appreciated.
Thanks
This discussion has been closed.