Search
14090 results 7131-7140
Forum
- 19th Mar 2015Filter multiple data in same columnHello I shared another solution. I'm not sure old version can do it. latest version support regex in search function. var val = []; val.push("ASIA"); val.push("Africa"); val.push("EU"); val.push("USA"); var table = $("#example").Datatable(); var mergedVal = val.join('|'); table.column(1).search(mergedVal,true).draw();
- 18th Mar 2015Custom query for server-side DataTablesThere are plenty of posts about this if you search the forum. Basically you need to customise the server-side script, since any such example scripts in here are only intended as examples - not "one size fits all" production classes.
- 17th Mar 2015dom elements change positionAdded and i added : div.dataTables_paginate { margin-top: -30px; } for paginations but still can manage to change the "show 25 entries " to be on the same row as search ...
- 11th Mar 2015What is the Purpose of columns[i][search][value] ?value during the column search. Because, it would be
- 10th Mar 2015how to sum and average various columns at same timeafter make a search on the web (googled)
- 9th Mar 2015How do I translate the "type here..." string and "All" string in my datatables?Thank you, allan, searchPlaceholder was helpful for translating the "type here..." string in my search fields. I am still looking for a way to translate the "All" in length menu.
- 9th Mar 2015Data Loadingloading and cannot also search through the records because
- 9th Mar 2015Get Filtered / Searched data and filtered ColumnUse column().search() to get the applied search term. Allan
- 7th Mar 2015preventing eventsI would suggest calling search() and avoiding the private API entirely. Set searchDelay to 0 to stop DataTables doing any throttling if you are using server-side processing. Allan
- 4th Mar 2015Datatable searchingHi, Just an Idea. Using the following method to disable searching on certain columns. It will not search in the 2nd and 3rd column. $('#example').dataTable( { "columnDefs": [ { "targets": [ 2 ], "searchable": false }, { "targets": [ 3 ], "searchable": false } ] } );