ASP Classic Dropdown filter

ASP Classic Dropdown filter

ShortyMe14ShortyMe14 Posts: 2Questions: 0Answers: 0
edited February 2013 in General
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 is like this :
[code]
$(document).ready( function () {
$('#table_id').dataTable({
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "untitled.asp"

}
).columnFilter({
aoColumns: [

{ type: "select", values: [ 'Update', 'Email'] },

]

});

} );


[/code]

but it doesnt seems to work
any help is appreciated. Thanks
This discussion has been closed.