DataTables warning
DataTables warning
guybahar
Posts: 1Questions: 1Answers: 0
I get this message DataTables warning: table id=example - Requested unknown parameter '9' for row 100. For more information about this error, please see http://datatables.net/tn/4
on ASP.NET MVC page
the data is db.Systems.Include("AspNetUsers").Include("Recipients").ToList();
and the asp page is:
Systems
@if (!Model.isExceedMaxCameras) { Create... }
System | Type | Time Zone | Email address | Phone Number | Recipients | Status | Quota [MB] | PN Active | Last Image Time | Failure | Delete |
---|---|---|---|---|---|---|---|---|---|---|---|
@item.Name
|
@if (item.SystemType == 0) { @systemType } else { if (!string.IsNullOrEmpty(item.LinkIP)) { } else { } } | @systemTimeZone | @item.EmailUsername | @item.SmsPhoneNumber |
@foreach (var r in Recipients)
{
@r.Name
}
@Html.ActionLink("Manage Recipients", "Index", "Recipients", new { systemId = item.ID }, null) |
... more tds
please need your help !
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
The link in the error messsage provides a diagnostic process. That would be where to start.