Column Filter plugin not working with GridView

Column Filter plugin not working with GridView

tanProgtanProg Posts: 6Questions: 0Answers: 0
edited April 2012 in General
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.

Replies

  • donzanuranodonzanurano Posts: 3Questions: 0Answers: 0
    salam...

    use this script


    $(document).ready(function () {
    $('#GridViewExample').GridviewFix().dataTable({
    "sScrollY": 500,
    "bJQueryUI": true,
    "sPaginationType": "full_numbers"
    });
    });


    its work..

    salam...
This discussion has been closed.