i want to implement inline cell editing in mvc 4 the following code is

i want to implement inline cell editing in mvc 4 the following code is

harishraoharishrao Posts: 13Questions: 6Answers: 0

var oTable;
$(document).ready(function () {
oTable = $('table#myDataTable').dataTable({

        "sAjaxSource": '@Url.Action("AjaxHand", "comp")',
       // "bServerSide": true,
        "aoColumns": [
                                    { "mData": "name", align: 'left', "sWidth": '2%' },
                                    { "mData": "address", align: 'left', "sWidth": '2%' },
                                    { "mData": "town", align: 'left', "sWidth": '2%' }
                                    ]

    });

});
name address town

i hav implemented in makeEditable() it is not working and i m finding diffierent examples but even it is not working plz help me allan

This discussion has been closed.