1
我正在使用「jquery.tablesorter.widgets.js」表過濾器工作正常,但我不得不顯示「沒有數據發現」,當記錄不可用基於搜索條件。TableFilter插件與空數據
這是我的代碼。
HTML代碼:
<tr>
<td class="filter-false" width="3%" style="background: #5e5c5c; color: #fff; vertical-align: middle; font-size: 12px; font-weight: bold"></td>
<th class="txt1" style="text-decoration: underline; cursor: pointer">Domain</th>
<th style="text-decoration: underline; cursor: pointer">Registrant Name</th>
<th class="filter-select" data-placeholder="Select" style="text-decoration: underline; cursor: pointer">Account Id</th>
<th style="text-decoration: underline; cursor: pointer">Expiry Date</th>
<th style="text-decoration: underline; cursor: pointer">Renewal Date</th>
<th style="text-decoration: underline; cursor: pointer">Email ID</th>
<th class="filter-false" style="text-decoration: underline; cursor: pointer">Status</th>
</tr>
JavaScript代碼:
$(document).ready(function() {
$("#yui").tablesorter({
// headers: { 0: { sorter: false }, 1: { sorter: false }, 2: { sorter: false }, 3: { sorter: false }, 4: { sorter: false }, 5: { sorter: false } },
widthFixed: false,
// initialize zebra striping and filter widgets
widgets: ["zebra", "filter"],
// headers: { 5: { sorter: false, filter: false } },
widgetOptions: {
// extra css class applied to the table row containing the filters & the inputs within that row
filter_cssFilter: '',
// visible; default is false
filter_childRows: false,
filter_ignoreCase: true,
filter_reset: '.reset',
filter_saveFilters: true,
filter_searchDelay: 300,
filter_startsWith: false,
filter_hideFilters: false,
filter_functions: {
}
}
})
.tablesorterPager({ container: $("#pagerOne"), positionFixed: false, size: 10 })
});
我必須顯示 「未找到資料」 的消息在錶行。
如果您不使用尋呼機,請使用[本答案](http://stackoverflow.com/a/34516211/145346)中的代碼。 – Mottie