I am using jQuery datatable in my MVC application and first time I send data to it from server and its working fine but when I want update the table with SignalR request then it gives the requested unknown parameter.
HTML
<table id="tblEmployeeOut" class=" table table-striped table-bordered table-hover">
<thead>
<tr>
<th>
Id
</th>
<th>
Name
</th>
</tr>
</thead>
<tbody>
@foreach (var item in employeeOut)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.EnrollNumber)
</td>
<td>
<span> @item.FirstName @item.LastName</span>
</td>
</tr>
}
</tbody>
</table>
Script
$('#tblEmployeeOut').dataTable({
bLengthChange: false,
"dom": '<"top"i>rt<"bottom"flp><"clear">',
sPaginationType: 'full_numbers',
bFilter: false,
bInfo: false,
iDisplayLength: 5,
"language": {
"emptyTable": " No Clients"
},
"aoColumns":
[
{ "sName": "Id" },
{ "sName": "Name" }
]
});
In the second image you can see the returned "Json" and in third image the alert shown by jQuery datatable.
You cannot simply call
without using mData.
You need to provide other types of input data. (check this and navigate yourself to the specification of fnAddData).
You might want to try a simple function I have just come up with:
and use it like so:
Hope this helps.
UPDATE: if you use
mData
attribute for the columns like this:then you can simply call it easily like you want to: