Column Filter plugin not working with GridView
Column Filter plugin not working with GridView
Hi
I am using a Gridview plugin which lets the DataTable plugin work with gridviews.
[quote]http://www.codeproject.com/Articles/267001/GridviewFix-helper-plugin?msg=4221271#xx4221271xx [/quote]
The Datatable plugin is working and the initial search box ,indexing etc appear.
But the column filters in the footer do not appear. But the text for the footers appears.
This is my code :
[code]
$(document).ready(function () {
$("#GridView1").GridviewFix({ header: "headerStyle", row: "rowStyle", footer: "footerStyle" }).dataTable().columnFilter();
});
[/code]
The result is the same if I swap the ColumnFilter script with the GridViewFix script.
I am using a Gridview plugin which lets the DataTable plugin work with gridviews.
[quote]http://www.codeproject.com/Articles/267001/GridviewFix-helper-plugin?msg=4221271#xx4221271xx [/quote]
The Datatable plugin is working and the initial search box ,indexing etc appear.
But the column filters in the footer do not appear. But the text for the footers appears.
This is my code :
[code]
$(document).ready(function () {
$("#GridView1").GridviewFix({ header: "headerStyle", row: "rowStyle", footer: "footerStyle" }).dataTable().columnFilter();
});
[/code]
The result is the same if I swap the ColumnFilter script with the GridViewFix script.
This discussion has been closed.
Replies
use this script
$(document).ready(function () {
$('#GridViewExample').GridviewFix().dataTable({
"sScrollY": 500,
"bJQueryUI": true,
"sPaginationType": "full_numbers"
});
});
its work..
salam...