Search
14049 results 2981-2990
Forum
- 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.
- 9th Feb 2023Search Panes layout not (really) responsiveHello, I had exactly the same problem. It was because of the CSS property "transition" inherited from my ResetCSS style sheet : * { transition: 0.4s; } Removing it solved the problem. Hope it can help.
- 2nd Dec 2022Search builder plug in does not include all conditionsThis is a duplicate of your other thread. I've replied there. Allan
- 1st Nov 2022Search bar and pagination show twice ?Are you using the DataTables component for Vue? There is still no test case, so it's really hard to say why something isn't working. You need to give me more information :) Allan
- 1st Nov 2022multiple column filter(filter search in modalNot sure what your questions are but maybe these two examples will help: https://datatables.net/examples/api/multi_filter.html https://datatables.net/examples/api/multi_filter_select.html If you still have questions or issues please provide details. Kevin
- 26th Oct 2022Hi , Can someone please tell me how to add the fuzzy search plug in shiny app. thanksHi, You didn't complete the template text. Could you link to a page showing what you have tried so far please? Allan
- 5th Oct 2022How to put value from the other field to make condition to search from other tableThank you allan
- 21st Sep 2022Export to PDF the results with search criteraiHi Allan, Thanks for your feedback. For people who may be interested, here is the piece of code I use : $('#example').DataTable().columns().every(function () { if (this.search() != '') { i++; rslt += this.header().innerText + " = " + "*" + this.search().replace('((((', '').replace('))))', '') + "* - "; } }); (i == 1) ? s = '' : s = 's'; The s variable is only to be able to add an s if plural. Then when configuring pdfmake, I create a header, in the header I added a table, where I simply put the rslt text. It is very simple, but hard to find ;-) Now I am looking for a way to export in PDF NO RECORD without any table when the filters show no results !!!!! Still not found ;-)
- 20th Sep 2022I have a problem with duplicated pagination & search bar, can someone help me out?What is happening is that the DataTable is being re-initialised, without previously having been destroyed, but also that the DOM node is not the original (i.e. the HTML has been over written). Here is a really simple demonstration of that: http://live.datatables.net/lavigiji/1/edit . If you hadn't included the mounted() function I wouldn't have known what was going on so quickly, but when your component is destroyed and then remounted, it will appear. You don't say, and haven't included a test case as we ask for, but I'd guess it works the first time it is mounted, then you get what you showed above on the second time, then the third time there are three controls, etc. Probably the easiest fix in this case is to call destroy() in an unmount hook. Allan