Adding new rows, I get: "DataTables warning (table id = 'example'): Requested unknown parameter 'userid' from the data source for row 3" error.
Could someone take a look please: http://jsfiddle.net/6tK7K/23/
You are adding an array of data using fnAddData, but your data source in aaData are objects. You are also explicitly telling DataTables to use object properties through the use of mDataProp . You want to add an object of that same structure - not an array.
Replies
Allan