数据表的第一列是隐藏列,最后一列有两个操作链接。
<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>
我使用以下代码动态地将新行添加到datatable中。
theTable.dataTable().fnAddData(data);
我得到了一个类似'DataTables警告请求来自行数据源的未知参数'0'的警告。实际上我最后插入了一个新行,无聊的警告。任何人对此问题发表评论,或者如何以编程方式插入新行?