Search
11430 results 1821-1830
Forum
- 29th Dec 2021How to show filter fly out outside the table in mobile view?You've posted screenshots with any explanation three times now... 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
- 17th Dec 2021How can we add a editable datatable filter numbers greater, equal, lesser than to a numeric column?Thanks for the answer @kthorngren it helps me a lot.
- 9th Dec 2021Server side datatable with custom filter not saving stateMaybe this option will work. Build your select inputs into a hidden div. Then in initComplete move the inputs to the dom toolbar. Something like this: http://live.datatables.net/ruwohuxe/3/edit Kevin
- 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