What steps will reproduce the problem?
1. I am using Fixed Column Plug In in my data table along with Horizontal &
Vertical Scroll. This works well.
2. To have column filter in the table, I am using the Column Filter Plug In.
3. when I run the page I get the error.
What is the expected output?
Column Filter should appear.
What do you see instead?
I get the below error,
"Microsoft JScript runtime error: Object doesn't support property or method
'columnFilter'"
on the line "$('#tblSourceDataMapp').dataTable.columnFilter();"
What version of the product are you using? On what operating system?
1.4.7 on Windows 7
Please provide any additional information below.
Below if the javascript,
<script type="text/javascript"
src="Scripts/Datatables/js/jquery.dataTables.js"></script>
<script type="text/javascript" src="Scripts/Datatables/js/FixedColumns.js"></script>
<script type="text/javascript" src="Scripts/Datatables/js/jquery.dataTables.columnFilter.js"></script>
$(document).ready(function () {
var oTable = $('#tblSourceDataMapp').dataTable({
"oLanguage": { "sSearch": "Search Data Mapping Grid:" },
"iDisplayLength": 10,
"aaSorting": [[0, "asc"]],
"sScrollY": "300px",
"sScrollX": "100%",
"sScrollXInner": "300%",
"bScrollCollapse": true
})
new FixedColumns(oTable, {
"iLeftColumns": 3,
"iLeftWidth": 225
});
$('#tblSourceDataMapp').dataTable.columnFilter();
Original issue reported on code.google.com by salil...@gmail.com on 23 May 2012 at 9:46
Original issue reported on code.google.com by
salil...@gmail.com
on 23 May 2012 at 9:46