Search
14020 results 12561-12570
Forum
- 24th Aug 2021datatable colorize all lines containing a searched itemWe're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 23rd Aug 2021datatable select all lines containing a searched itemAs we said in your other thread, rowCallback would be the way to go. It's called every time a row is drawn, so it would be called on all other pages. If you need more help with this, please provide a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 27th May 2020Hi, I've searched and tried getting this fixed for some hours now, but cannot get it to work.We're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 9th Apr 2020Move searchbar on the left and make it occupy 100% of table's widthThe user and all related content has been deleted.
- 21st Oct 2019Search/filter collumn Button That Toggles textHello @colin That's spot on what i was trying to do! hehe thanks for all the Help! But maybe it woould be cool to have the buttons in the header ... i have 5 columns with yes or no in this table i am trying to build. Was looking to alter this example. https://datatables.net/extensions/fixedheader/examples/options/columnFiltering.html instead of the filters, i would have the buttons... will give it a try! Thanks again @colin
- 23rd Sep 2015How to exclude hidden columns from being searched.Can you link to a test case showing the issue please. Thanks, Allan
- 3rd Sep 2014Multiple custom range searchesI did some poking around and figured out that setting.sTableId has the table ID. Checking for this in the function will get me what I need!
- 4th Oct 2011Column Filtering with Reordering - searches wrong column after reorder?I'm having the same problem, but I don't really understand your answer. In my case I only have some columns being filtered, and I applied this to avoid incorrect index assignment: [code] var index = $(this).parent("tr").children().index($(this)); if (index) { this.innerHTML = fnCreateSelect(oTable.fnGetColumnData(index)); $('select', this).change(function() { oTable.fnFilter($(this).val(), index); }); } [/code] This works great, but the trick is to get it to run when a column is dragged and dropped. I'm not sure what callback I can tap for this. The draw callback didn't fire after dropping a column into a new place. If I was able to tap into a callback, I could use the above code without the line that assigns the innerHTML to reset the indexes, I believe.
- 7th Jun 2009Export filtered or searched fields to excel/pdfHi Amit, I've just released this software called TableTools. You can check it out here: http://datatables.net/forums/comments.php?DiscussionID=327 Regards, Allan
- 31st Jul 2015typingDelay instead of searchDelay?When someone is using dataTables with ajax data, I think that a better approach would be to delay the ajax call until the user stops typing, to avoid unnecessary server side processing. Is there a way to accomplish this?