我有一个使用bootstrap数据表创建的表,当我搜索数据时,它在表中工作。
但我在每一行都创建了一个嵌套表。当我点击特定行上的“显示客户”链接时,将显示此嵌套表。
现在,当我从父表中搜索元素时,它只搜索父表元素,我想搜索子表元素以及。
如何做到这一点。
表格的Html代码:
<table class="table table-hover" id="table2">
<thead>
<tr>
<th>ID</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<a href="#" onClick="project_list('<?=$item->bldr_ID;?>',0)">
details
</a>
</td>
</tr>
//Here generate another child table when i click details link (will call "project_list" function using ajax)
// Now want to search element both parent and child elements from parent table search column
</tbody>
</table>
答案 0 :(得分:0)
数据表只能搜索表中的本地内容。你有两个选择:
您在创建期间在表格中编写«project_list»数据并隐藏它们。