jquery datatables add checkbox with ajax server side response

Posted by dotneter on Stack Overflow See other posts from Stack Overflow or by dotneter
Published on 2010-06-18T10:06:26Z Indexed on 2010/06/18 10:13 UTC
Read the original article Hit count: 819

Filed under:
|
|
|

I am using C# ASP .NET MVC and ajax calls. I am able to get the display of the table along with all features.

But, I don't understand how do I add a checkbox and button. I have tried dom-checkbox as well but can't get it to work.

Any help is appreciated.

My code looks like this:

$(document).ready(function () {

$('#personTable').dataTable({
            "bJQueryUI": true,
            "sPaginationType": "full_numbers",
            "bProcessing": true,
            "bServerSide": true,
            "sAjaxSource": "/Home/GetCustomData",
            "aoColumns": [
                         { "sSortDataType": "dom-checkbox", "sTitle": "Select", sName": "" },
                         { "sName": "ID", "sTitle": "ID" },
             { "sName": "FirstName", "sTitle": "First Name" },
             { "sName": "Email", "sTitle": "Email"}]
        });
    });

My Html is : [table border="1" id="personTable" class="display"] [/table]

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about jQuery