Wanted to put this up here for archival purposes, in case anyone else runs across this issue...
I've spent the last two days trying to solve this crazy warning alert that kept popping up ONLY when testing on IE browsers:
After ultimately doing pretty much a full stack trace this issue resolved down to the infamous "extra comma" gotcha of IE; so if you get this error check your
Thanks!!!
I've spent the last two days trying to solve this crazy warning alert that kept popping up ONLY when testing on IE browsers:
DataTables warning (table id = "{id}"): Requested unknown parameter '{X}' from the data source for row {X}
After ultimately doing pretty much a full stack trace this issue resolved down to the infamous "extra comma" gotcha of IE; so if you get this error check your
dataTable({"aoColumns": []});array (well really all your array and objects) for any extra trailing commas.
Thanks!!!