1

I have issue with updatepanel(asp.net), I put datatables grid inside updatepanel, all are working fine, but when updatepanel called, the checkbox column filter disappear...

$('#data-tables').dataTable({

        dom: 'RC<"clear">lfrtip',
        //"bSortCellsTop": true,
        colVis: {
            exclude: [0, 1, 2]
        },
        'bAutoWidth': false,
        "bSort": false,
        'aoColumns': [

          { 'sWidth': '15%' }
        ],
        columnDefs: [
        {
            visible: false
            //, targets: 3
        }
        ]
    }).columnFilter(
           {
               sPlaceHolder: "head:after",
               aoColumns:
               [

                   { type: "checkbox", values: null }
               ]
           });
2
  • you have not considered a fnInitComplete here too ..? Commented Jul 24, 2015 at 1:33
  • I applied fnInitComplete, but it is not working here :( Commented Jul 24, 2015 at 9:33

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.