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