DataTables warning

DataTables warning

guybaharguybahar 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... }
@foreach (var item in Model.Systems) { var Recipients = item.Recipients; ... more tds }
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)
//$(document).ready(function () { $('#example').dataTable({ "processing":true}); //});

please need your help !

This question has an accepted answers - jump to answer

Answers

  • tangerinetangerine Posts: 3,342Questions: 35Answers: 394
    Answer ✓

    The link in the error messsage provides a diagnostic process. That would be where to start.

This discussion has been closed.