我想知道如何讓我的桌子能夠使用Twitter Bootstrap進行排序?有什麼要考慮的事情?如何讓表格能夠使用Twitter Bootstrap進行排序?
回答
您需要使用jQuery和dataTable.js。
讓我們看看一個例子:
<table cellpadding="0" cellspacing="0" border="0" class="table table-striped table-bordered" id="example">
顯示網格:定義用於數據表的控制元件的網格佈局,先前我們已經使用的「span8」元素來表示半值寬度的元件,但與變化至12 Bootstrap中的列只需要更改爲使用「span6」。因此,我們的數據表初始化的樣子:
$(document).ready(function() {
$('#example').dataTable({
"sDom": "<'row'<'span6'l><'span6'f>r>t<'row'<'span6'i><'span6'p>>"
});
});
我們還需要設置在數據表包裝元素一個新的類,以使窗體元素出現的內聯,而不是作爲一個塊(表過濾輸入和長度選擇是通過這種影響要做到這一點,我們只是延長「sWrapper」類選項的數據表:
$.extend($.fn.dataTableExt.oStdClasses, {
"sWrapper": "dataTables_wrapper form-inline"
});
排序 引導V2已降至支持的tablesorter作爲表庫,結果排序類已被刪除因此我們需要定義我們自己的排序樣式,我們可以完全按照這個樣式進行排序AME的方式,因爲我們做的DataTable自己的CSS文件(影像是在介質中的數據表分配一個zip文件/圖片):
table.table thead .sorting,
table.table thead .sorting_asc,
table.table thead .sorting_desc,
table.table thead .sorting_asc_disabled,
table.table thead .sorting_desc_disabled {
cursor: pointer;
*cursor: hand;
}
table.table thead .sorting { background: url('images/sort_both.png') no-repeat center right; }
table.table thead .sorting_asc { background: url('images/sort_asc.png') no-repeat center right; }
table.table thead .sorting_desc { background: url('images/sort_desc.png') no-repeat center right; }
table.table thead .sorting_asc_disabled { background: url('images/sort_asc_disabled.png') no-repeat center right; }
table.table thead .sorting_desc_disabled { background: url('images/sort_desc_disabled.png') no-repeat center right; }
收拾一下 最後,還有從1.4兩處修改我的積分CSS文件來完成我們的樣式:
從dataTables_length和dataTables_filter類中移除寬度。 Bootstrap中的更新意味着這些不再需要。 我以前的表類有「margin:1em 0;」但隨着他變化,視覺流動現在更好,「邊緣底部:6px!重要」;
檢查this參考
dataTables不再免費。@ KindSyco的答案是一個自由的方式來做同樣的事情使用Bootstrap,並且是一個Bootstrap插件,因此它將更容易集成,恕我直言 – akousmata
有一個library提供與自舉表排序的能力。
這是關於如何使用它的quick demonstration。
HTML:
<table class="table table-bordered table-striped sortable">
<thead>
<tr>
<th data-defaultsign="month" data-sortcolumn="1" data-sortkey="1-1">
Date
</th>
</tr>
</thead>
<tbody>
<tr>
<td data-dateformat="D-M-YYYY">16.4.2004</td>
</tr>
<tr>
<td data-dateformat="D-M-YYYY">6.7.2002</td>
</tr>
<tr>
<td data-dateformat="D-M-YYYY">4.4.2004</td>
</tr>
<tr>
<td data-dateformat="D-M-YYYY">6.6.2012</td>
</tr>
</tbody>
</table>
JS:
(function() {
var $table = $('table');
$table.on('sorted', function() {
console.log("Table was sorted.");
});
}());
HTH。
工作完美和乾淨... –
@Kremena快樂,它幫助了一個人! – KindSyco
- 1. 如何使用Bootstrap Tagsinput對下拉列表進行排序?
- 2. 如何讓Twitter Bootstrap使用prototype.js?
- 3. 如何讓我的「查看者」對Google表格進行排序?
- 4. 如何使用playframework crud模塊使用twitter bootstrap表格格式?
- 5. 如何對錶格進行排序?
- 6. Bootstrap jquery可排序只對行進行排序?
- 7. 如何使用Twitter Bootstrap網格系統?
- 8. 如何使用值對字典進行排序並且還能夠訪問鍵
- 9. 使用Javascript插件對HTML表格進行排序功能
- 10. 如何使用不帶庫的Javascript對錶格進行排序?
- 11. 如何使用JOIN對錶格進行排序?
- 12. 如何使用Vue.js對錶格列進行排序?
- 13. 如何使用Python和BeautyfulSoup對HTML表格進行排序
- 14. 使用Twitter的Bootstrap進行博客?
- 15. 使用Twitter Bootstrap進行Joomla模板
- 16. 使用twitter-bootstrap表格的佈局
- 17. 無法使用rails g bootstrap:使用'twitter-bootstrap-rails'進行安裝
- 18. 如何讓ReSharper使用系統命名空間進行排序?
- 19. jquery twitter插件能夠使用twitter列表API嗎?
- 20. 如何使用Twitter Bootstrap ScrollSpy執行功能
- 21. 讓jSignature使用Twitter Bootstrap模式
- 22. Twitter Bootstrap嵌套表格
- 23. Twitter Bootstrap水平表格
- 24. 如何使用網格能夠搜索
- 25. 如何能夠讓圖像
- 26. 使用dust.js對功能進行排序
- 27. 不能讓Twitter Bootstrap崩潰工作
- 28. 使用bootstrap進行分層排列
- 29. 如何使用jQuery UI進行排序來排序第二行?
- 30. 如何使用領域進行排序?
使用表格分揀機插件 –
我已經使用這個[插件](http://datatables.net/blog/Twitter_Bootstrap_2)我複製了CSS,JS等,我知道爲什麼它不工作〜_〜 –
檢查控制檯爲了錯誤。按f12 - >控制檯 –