I'm using DataTables plugin. I don't want to use the sorting option (to sort the columns in ASC or DESC order) which comes by default on each <thead>
. How can I remove that sorting icon?
相关问题
- jQuery DataTable - Search a column of dropdowns
- jQuery Plugin to simulate browser page zoom/text z
- Uncaught TypeError: undefined is not a function fo
- Avoid Rendering “No Data Available in the table” i
- datatables initialize table after button click (aj
相关文章
- DataTable : How to hide table header?
- Selecting all visible rows after a search using
- How to add a class to a new row in a jquery datata
- jQuery Datatables - how to programatically sort by
- autocomplete showing self.element.propAttr error
- comma separated auto complete with jquery auto com
- jstree checkbox checked on load
- Is it possible to implement a circular/infinite ca
You can e.g. set
style="display:none;"
to the arrow element. You can set it programmatically using JavaScript or you can use CSS class. Firstly you have to examine the HTML code (the arrow element) using some developer console like FireBug.You can set it by
bSortable
tofalse
inaocolumn
like :You can also exclude from search by set
bSearchable
tofalse