Search
11455 results 1831-1840
Forum
- 29th Nov 2021How can I update the select 2 filter outside the data table?Is this with Editor? Or filtering? There are a few threads on each, such as here and here, Colin
- 4th Oct 2021Is there a way to perform multiple filter types on multiple columnsOMG! I wrote a huge response when I saw the SearchBuilder Extension (Q)! I think this may solve some of the issues I had on many of my pages. I will look into this. Thank you!
- 22nd Sep 2021Datatables dropdown filter dropdown not responsiveSee if this thread helps. Kevin
- 21st Sep 2021Datatable Scroll Filter ProblemTry the nightly version of FixedColumns which makes this kind of thing much easier. You'll need to use the nightly CSS as well. Allan
- 17th Sep 2021How to add a filter select box in top form ?The select box appears in header form, between "Show X rows" and "Search" => I didn't find how to do that at all See if this example of adding custom toolbar elements helps. When requesting results to the server, the value always appears in query string => Using a function as ajax.data seems to do the job => That is the way recommended way, see this example. The select box is always having a value, it has a default value and it uses it for the first request Thats up to you, Datatables won't control the custom select input. When selecting another value, the table immediately refresh and show new results => Using ajax.reload() should be ok => That'll work. Another alternative is to use draw() if you are using server side processing (serverSide: true). Kevin
- 3rd Sep 2021Filter second selection based on first selectionThis is great, thank you!
- 2nd Sep 2021How do I add the following filter when searching through the datatable?You are going to need to elaborate on your question for me. Are you looking to replicate the code you have there with our Editor PHP libraries, or something else? If you are, then: $editor->where(function ($q) use ($request) { if ($request->first_name) { $q-where('first_name', '%'.$request->first_name.'%', 'LIKE'); } ... }) Would do it. See the documentation here. Allan
- 17th Aug 2021Filter to .select rowGreat kthorngren! This is the solution I was looking for Thank you. Thank you also Colin for your answer. I wish you all a good continuation. Riccardo. Do you know how to close this discussion ?
- 16th Aug 2021Selected row count doesn't clear properly when filter appliedof selected rows after filtering. Kevin
- 16th Aug 2021Cannot use Date Filter in SearchbuilderHi @poeziafree , DD-2030 is simply the internal bug number that we use to track the issue. You don't need to worry about that - it's just so that I can find the original post in the future. The error with SearchBuilder was cause due to the order in which you had your script tags. You can see the order that works by comparing the test cases above. The updated example I provided shows SearchBuilder is working fine, it is the SearchHighlight plugin that is causing the error. You could remove that and it would remove the error. Either way, SearchBuilder will still work. Thanks, Sandy