Search
14175 results 2961-2970
Forum
- 8th Mar 2009Change text for search or 'counter'is something like changing 'Search' to 'Filter' -and changing
- 29th Jun 2026Type issues in Search BuilderLink to test case: https://github.com/DataTables/SearchBuilder/blob/master/src/interface.ts#L104 Description of problem: According to the doc, searchBuilder.rebuild() has two arguments, but the typing is missing the newly added boolean type redraw and the doc might also need be updated too. It says: searchBuilder.rebuild() takes one argument... If I use: dt.searchBuilder.rebuild() I got: TS2554: Expected 1 arguments, but got 0 Same issue for the typing of searchBuilder.getDetails(). or If I use: dt.searchBuilder.rebuild(stored) I got: TS2345: Argument of type Required<Pick<SearchBuilderDetails, "criteria">> & SearchBuilderDetails is not assignable to parameter of type IDetails Types of property criteria are incompatible. Type SearchBuilderCriterion[] is not assignable to type Group[] Type SearchBuilderCriterion is missing the following properties from type Group: classes, dom, c, s, and 23 more If I use: dt.searchBuilder.getDetails(false) I got: TS2554: Expected 0 arguments, but got 1
- 3rd Feb 2026Search issue with ColReorder and ColumnControlLink to test case: https://live.datatables.net/tisesepa/6/edit Debugger code (debug.datatables.net): Error messages shown: Description of problem: Hello DataTable Support team, I am trying to create a fairly comprehensive data table with the following extensions: * StateRestore * ColumnControl * ColReorder I found a kind of bug that can be reproduced with the following steps: Move the Age column to the left (with the Office column) Reload the page Filter in the Age column (for example, 61) Remove the filter Reload the page Here we can see that the filter type has changed and it is no longer possible to filter correctly. I also obtained this result with other cases, but these occur in unlikely and non-reproducible situations. I have found this article but not working for me : https://datatables.net/forums/discussion/81518/issues-with-column-control-and-column-reorder-in-state-object Best Regards,
- 15th Jul 2025Hide search on datatable that is on an editor formThank you
- 8th Jul 2025Ho to avoid sorting but keep the search field, "Show nn entries", etc?That suggests to me that you've actually got a Javascript error on the page. If you look at the browser's console, is there anything shown there? Can you link to the page or show us the full JS initialisation for the DataTable? Allan
- 16th May 2025search is stopping when string contains special characters like pointerLink to test case: Debugger code (debug.datatables.net): Error messages shown: Description of problem:
- 18th Mar 2025Problem with saved search builder queriesLink to test case: https://live.datatables.net/febugiyo/1/edit Debugger code (debug.datatables.net): ezoyot Error messages shown: None Description of problem: Hello, I have a table with SearchBuilder in a modal and stateSave: true. If I made multi-level queries, they work correctly but when reloading the page, the queries still are but multilevel dissapears until I add another query. Someone know how to resolve this? Sorry for my English, is very bad. Thank you
- 12th Dec 2024Search Icon showing 1/4 instead of iconIf the server is sending it as Latin-1, that might (?) be overriding the UTF-8 charset attribute. Are you able to get your HTTP server to send the JS as UTF-8? Perhaps what I need to do is look at changing the defaults in DataTables to use only ASCII, with the UTF-8 characters in an escape sequence. Is it only the paging icons that are causing an issue now? Allan
- 21st Nov 2024Search Builder unable to remove conditionswas using the wrong conditions. Working example: https://live.datatables.net/yosupuhi/9/edit string: { '=': null, '!=': null, 'starts': null, '!starts': null, '!contains': null, 'ends': null, '!ends': null, 'null': null, 'notEmpty': null, '!null': null, },
- 18th Oct 2024Search Textbox Underneath Each Columndatatable that has a searchbox underneath each column. I