Search
11331 results 3751-3760
Forum
- 25th Aug 2017call the same function for initComplete and reload ?change', function (ev) { var filter = jQuery.fn.DataTable.ext.type.search.html(...); api.column( colIdx ).search(
- 25th Aug 2017How can I make column().search() execute a function if no results found?Are you basically trying to find if a column contains some value? If so the filter() method along with count() might be the best way to do it: theTable .column(1) .data() .filter( function ( val ) { return val === searchTerm; } ) .count(); Allan
- 23rd Aug 2017SharePoint list using Datatablesbe used without selction, filter, expansion. var listName = arg.listName;
- 23rd Aug 2017Export child rows using excelHTML5fa-file-excel-o"></i>', titleAttr: 'Excel', "oSelectorOpts": { filter: 'applied', order: 'current' }, "sFileName":
- 23rd Aug 2017Fixed header and footer not workingI want both search filter at the top and fixedHeader what I supposed to do There aren't any problems I know of using FixedHeader and column search in the header. What have you tried and what is not working? Kevin
- 22nd Aug 2017Having trouble with custom filtering a column by a rangecode that did text filtering, which was always firing prior to my custom date filter code. The end result
- 21st Aug 2017Have a range of years in datatable column and when search in the range, find the itemstype being rendered is filter. If it is the
- 20th Aug 2017Perform regex search on data with hyperlinksI'm not sure what your regex string looks like nor what your hyperlinks look like but you may be able to use columns.render to render the filter type to something you can search on. Kevin
- 19th Aug 2017DataTable Header Issue on a Wizard pluginsmall screens where the filter and length overlaps each
- 18th Aug 2017Trouble Filtering Displayed DataI got it! I took out: "filter": false, then "search": {"search": "D01"}, works perfectly.