我想在jQuery Datatable中添加一列。它将用于包含每行的删除按钮,就像我对另一个表一样。按钮图片和类在php文件中是特定的,它从数据库中检索表数据。
只需在html中添加一列,因为以下内容会破坏页面上的javascript:
<th>New Column</th>
我没有在aoColumnDefs设置中看到任何对添加的列做任何事情的内容。我需要添加或编辑哪些代码以及在哪里容纳新列?
我不是现有表格背后的原始开发人员。
答案 0 :(得分:0)
您可能已经忘记为身体添加色谱柱,以及您有&#34; tfoot&#34;你还需要添加另一列。
答案 1 :(得分:0)
您可以在此处添加一个或多个,如Revenue2
<table class="mws-table">
<thead>
<tr>
<th>Date</th>
<th>Transaction ID</th>
<th>Segment</th>
<th>Revenue</th>
</tr>
</thead>
<tbody id="transactions">
<tr>
<td class="trDate"></td>
<td class="transactionId"></td>
<td class="segment"></td>
<td class="revenue"></td>
</tr>
</tbody>
<tfoot>
<tr class="customFooterRow">
<th>Total</th>
<th></th>
<th></th>
<th align ="left" class="revenueTotal"></th>
</tr>
</tfoot>
</table>