动态添加数据表中的行使搜索框和行无法编辑

时间:2016-04-28 18:42:41

标签: javascript jquery ajax datatable django-templates

我正在使用此补丁动态地在数据表中添加行。添加行后,它会使行和搜索框无法使用。因此,我无法在桌面上搜索和执行编辑。这是我的javascript和HTML代码。

$('#example').dataTable().fnAddData([
count++,
order['wabn'],
picker_name,
order['client'],
])

如果请求成功,这是我的javascript。它运行并在表中添加行。但随后搜索框变得不可编辑。在此表可编辑之前,但一旦动态添加该行,它就是不可编辑的。

Here is my html code. In this I am adding my table in my template.
<table id="example" class="display table table-bordered" cellspacing="0" width="100%">
<thead>
<tr>
<th style="width: 10px">#</th>
<th>AWB</th>
<th>Reciever</th>
<th>client</th>
</tr>
</thead>
</table>

我尝试使用make editable方法,但它没有用。有什么办法吗?

0 个答案:

没有答案