Search
14048 results 1211-1220
Forum
- 10th Sep 2015Global Search with RegEx only checking column 0?applied // for the global search it applies the regex
- 10th Sep 2015search on encrypted datathe stored data for search, or encrypting the user
- 9th Sep 2015Search on rows attributesYes you can search on cell attributes - see the orthogonal data documentation. Allan
- 7th Sep 2015How to combine individual column search box into a drop-down box?a text box for search and then a select
- 2nd Sep 2015Add additional filter drop-down to same line as dataTable searchDrop-down listbox] (blank line) Search: [Datatables Text Box] but
- 25th Aug 2015How to get search input in java? I tried request.getParameter("search"), which is useless.Thank you very much! I need to use request.getParameter("search[value]") to get global search input.
- 24th Aug 2015datatables search always returns zero rows with dynamically generated rowsto work with the search function? Secondly (this one
- 22nd Aug 2015How to use regex for multi-value whole-word column search, e.g., A or B?This works: table.columns().every( function () { var that = this; $( 'input', this.footer() ).on( 'keyup change', function () { var arr = this.value.split(';'); var pattern = ("\\b" + arr.join('\\b|\\b') + '\\b'); that .search( pattern, true, false ) .draw(); } ); } );
- 17th Aug 2015How do I add paging and search to my express web appplugin for pagination and search functionality. I'll have to
- 11th Aug 2015Search box column at the top of the tableI'm using : function filterColumn ( i ) { $('#idtable').DataTable().column( i ).search( $('#col'+i+'_filter').val() ).draw(); } $(document).ready(function() { $('#idtable').dataTable(); $('input.column_filter').on( 'keyup click', function () { filterColumn( $(this).parents('tr').attr('data-column') ); } ); but I can't put the filters input below the "show x entries" :/