Search
14013 results 2961-2970
Forum
- 8th Oct 2023How to implement own search pannel for datatable ?That's a nice looking filtering system - I like that! Totally possible with the API to build that - might be a little work, but doable. Allan
- 10th Sep 2023Custom toolbar Select field for searchThank you, Kevin! This is what I need. I also thought somewhere in the same direction, but I don’t know JS well. But thanks to DataTables and an excellent community, my knowledge is growing) Evgeniy
- 7th Aug 2023Is it possible to pass a search parameter set in one table to another table?Its OK - Ive found another way around the problem but thanks for your help.... :-)
- 12th Jul 2023How to change the default order in a particular search pane ?Thanks a lot Colin. It's nice that I can put it in columnDefs, now it's ok with all these defs : columnDefs: [ { visible: false, targets: [1, 15] }, { render: DataTable.render.number(' ', null, 0, null, ' €'), targets : [9, 10, 12] }, { searchPanes: { dtOpts: { order: [0, 'desc'] }}, targets: 15} ]
- 30th Jun 2023Search and filter rows based on click of an element in the DataTablesHere is a simple example: https://live.datatables.net/tefugala/1/edit It uses columns.className to assign a classname that is used as part of the event handler selector. Kevin
- 13th Jun 2023Is there a way to make column filters(or dropdown search) outside of the table?to just create the searches for your two columns.
- 12th Jun 2023Aligning X button in Search Builder or/and changing it's nameThat looks better, and at least not out of place. As long as it's a bit different so users aren't confused this should be ok :) Thank you
- 22nd Apr 2023I see that the column search input is present even for the columns that are declared non-searchableCorrect, I assumed that the datatables do it, but I was wrong, thank yuo VERY much.
- 31st Mar 2023Uncaught TypeError: Cannot use 'in' operator to search for 'length' in IdI changed the name of the object columns. It is working now. Problem solved. Thanks a lot.
- 8th Mar 2023Filter search panels performance issue, slow, laggyI set the cascadePanes: false and is super fast now, but then the values don't get calculated when applying the filters. Just wondering, what does cascade actually does? apart from hiding the records from filters when not meeting filter criteria? I also disabled the viewTotal and that also speeds up filtering by ALOT, but how can I remove the calculated values then as they no longer update.