我有一個HTML表格,切斷所有行超過200。這些行實際上存在,因爲如果我搜索它,list.js javascript搜索功能將在它們中查找數據,但當表加載時它們不會顯示。引導程序或html表中的行數是否有限制?
這是一個限制或設置bootstrap或其他一些HTML的東西?
更新 - 這是表格的簡化版本。 此外,我在這個頁面上使用的JavaScript庫與表格交互的是list.js和treetable.js。
我會注意到,我在另一個我開發的應用程序中看到過這個問題,但99%的時間不是問題,所以從未解決。在這個應用程序中,它幾乎總是一個問題。
<div class="table">
<div class="table-responsive" id="table3div">
<table class="table table-hover table-condensed tablesorter" id="table3">
<thead>
<tr>
<th>
<div class="checkbox custom-control custom-checkbox">
<label>
<input type="checkbox" id="checkAlltable3" />
<span class="custom-control-indicator"></span>
</label>
</div>
</th>
<th class="header">Description</th>
<th class="header">Status</th>
<th class="header">Associated With</th>
<th class="header">Assigned To</th>
<th class="header">ID</th>
<th class="header">Type</th>
<th class="header headerSortDown">Due Date</th>
</tr>
</thead>
<tbody class="list">
@for (int i = 0; i < Model.IssuesAndNotes.Count; i++)
{
<tr>
<td>
<div class="checkbox custom-control custom-checkbox">
<input id="checkBox" type="checkbox">
</div>
</td>
<td class="description">
Some data
</td>
<td class="status">
Some data
</td>
<td class="association">
Some data
</td>
<td class="assignedTo">
Some data
</td>
<td class="issueId">
Some data
</td>
<td class="type">
Some data
</td>
<td class="date">
Some data
</td>
</tr>
}
</tbody>
</table>
</div>
引導只是佈局你的內容...我不明白爲什麼會有這種限制。你能提供一個有代碼段代碼或jsfiddle代碼的工作示例嗎?謝謝 – Kiwad
@Kiwad更新了表 – amartin