DATA TABLE RESPONSIVE EXTENSION ISSUE WITH LINK BUTTONS

DATA TABLE RESPONSIVE EXTENSION ISSUE WITH LINK BUTTONS

user32user32 Posts: 1Questions: 1Answers: 0

Hello everyone i am using datatable in which i have used link button to perform inline operations:

"aoColumns": [

                      { "sName": "personid" },
                    { "sName": "FirstName" },
                    { "sName": "LastName" },
                    { "sName": "MaritialStatus" },
                     { "sName": "Gender" },  
      {"sName": "RoleId","bSearchable": false,

"mRender": function (data, type, full) {
var id = full[0]; //row id in the first column
return "<a href="+ id+">Edit</a>";
}
}
]

i am using responsive extension as provided datatable "http://datatables.net/extensions/responsive/" , but it fails for small screens
error:
"DataTables warning: table id=gridtable - Requested unknown parameter '5' for row 4. For more information about this error, please see http://datatables.net/tn/4." Can anyone help??

This discussion has been closed.