skip to Main Content

DataTables warning: table id={id} – Requested unknown parameter {paramater} for row 0, column 0. – JSON and AJAX Error

I have read the datatables.net documentation on populating a datatable using ajax and can't get anywhere. FROM THE CONTROLLER USING ASP.NET Core, the following method: [HttpGet ("EmployeesJSON")] public JsonResult EmployeesJSON() { var AllEmployees = _iEmployeeService.GetAllEmployees(); var json = JsonConvert.SerializeObject(AllEmployees, Formatting.Indented);…

VIEW QUESTION
Back To Top
Search