Search
23598 results 22341-22350
Forum
- 18th Sep 2014Expected behavior of .column().search()Thanks for the feedback - great to hear! Super nice to hear that first thing in the morning :-) Regards, Allan
- 29th Mar 2014columns.orderData dont work with integer column indexNice one - thanks for flagging that up. I'll fix it when I get into the office on Monday. Allan
- 29th Sep 2016how can we search 2 values in a column().search() / exclude a value from search?Hi there I am trying to search 2 values in a column through the below way.. dataTable.columns(7).search("Completed|Pending",true).draw(); Also how can i search a column for all values except a particular to get displayed? All my search values are coming from my url parameter - So i dont know how to pass them to the table generally. But this does not seem to work. Any alternative?
- 31st Aug 2016Databases columns.width function is not workingI am trying to archive fixed column width https://datatables.net/reference/option/columns.width with responsive datatables $('#example').dataTable( { "columnDefs": [ { "width": "20%", "targets": 0 } ] } ); but if the column text is grater than specified with like ( "width": "20%") it is auto resizing the column width. how can i restrict it fit within column width and trim excess using ellipsis ?
- 26th Oct 2014Column-selector for ColVis excludeIt would be nice if you can use other column-selectors like name for ColVis exclude
- 25th May 2026Column search with array - undocumented change in behaviour upgrading from 1.12.1 to 2.3.8passing an array into column().search() is not something that
- 3rd May 2026Suming value of child table in parent table25" }, { "id": "31" } ] }, The columns.render function is just presenting
- 27th Apr 2026Move the filter from the table footer to the top of the table?also uses table().header() and column().search(). The forum has other
- 3rd Feb 2026How to check if ColumnControl (serverSide enabled) contains any filter?ColumnControl extension doesn't use column().search() so you won't be
- 26th Aug 2025Can ColumnControl show a searchList of dates for a column of dates/times?Use x for Unix mS (Moment docs for formatting). For example you could use: render: DataTable.render.datetime('x', 'DD/MM/YYYY') for such a column (columns.render). That form will read the given format and then display it in whatever format you give. Allan