The first column of the datatable is a hidden column, the last column has two action links.
I use the following code to dynamically add a new row into datatable.
I got an error like 'DataTables warning Requested unknown parameter '0' from the data source for row'.
Any anyone comment on the problem?
<table id="ruleFourTable" class="table table-striped table-hover"> <thead> <tr> <th style="display: none">ID</th> <th><a>RetailerName</a></th> <th><a>BeginDate</a></th> <th><a>EndDate</a></th> <th><a>Remark</a></th> <th>Actions</th> </tr> </thead> <tbody> <tr style="display: none"> <td name="ID" style="display: none"></td> <td name="RetailerName"></td> <td name="Begin"></td> <td name="End"></td> <td name="Description"></td> <td name="__actionLink"><a class="actionLink edit">Edit</a> <a class="actionLink delete">Delete</a></td> </tr> </tbody> </table>
I use the following code to dynamically add a new row into datatable.
theTable.dataTable().fnAddData(data);
I got an error like 'DataTables warning Requested unknown parameter '0' from the data source for row'.
Any anyone comment on the problem?