Search
14018 results 4391-4400
Forum
- 2nd Mar 2022Table still keeping the first searched result, paging information not updated neither!when I search again using different searching
- 1st Mar 2022Hide some column by default and re-display when requiredsecond header with the search inputs. The column search
- 1st Mar 2022My users find the SearchBuilder Subgroup interface very confusing.trouble working through the search builder also and prefer
- 1st Mar 2022startRender countThanks Kevin! I had never used "pluck" before. Just tried it. I replaced this: ... var rows = dt.rows({ search: 'applied' }).data().toArray(); var ctrGovdeptIdArray = rows.map(function(a){return a.ctr_govdept.id;}); with this: ... var ctrGovdeptIdArray = dt.rows({ search: 'applied' }).data() .pluck('ctr_govdept').pluck('id').toArray(); Works!
- 1st Mar 2022SearchPanes cascadePanes doesn't work with nightly buildwon't work - perform a search in the pane or
- 1st Mar 2022Multi-Select columnsHi Colin, filter by Name search is not working.
- 28th Feb 2022Link To Pre-Filtered Table?filter rather than a search term, which I suppose
- 28th Feb 2022helloThis example from this thread should get you going - if you click on the icon beside the search the table switches to a card view Colin
- 27th Feb 2022Export to Excel issue when column has long integer stringsc[r^=A], sheet).attr('s', 50))? https://datatables.net/reference/button/excelHtml5 Search for "Built in styles".
- 27th Feb 2022OR-SearchUse a regex search and join the strings using the | OR regex token. Like this: https://jsfiddle.net/kjw5ygmh/ See the search() docs for more details. Also see this example. Kevin