Search
13909 results 481-490
Examples
- SearchPanes › Abstract Typesp>This is the searchPanes extension for DataTables. It
- SearchBuilder › Fomantic-UI (formally Semantic-UI) stylingThis example shows DataTables and the SearchBuilder extension being used with Fomantic-UI (a maintained fork of Semantic-UI). The DataTables / Fomantic-UI integration provides seamless integration for DataTables to be used in a Fomantic-UI page.
- SearchBuilder › jQuery UI stylingThis example shows SearchBuilder being used with jQuery UI being used as the CSS display framework.
- SearchBuilder › Grey scaleThis example demonstrates how to make the SearchBuilder styling turn to greyscale as an alternative to showing the colours around the select and input elements.
- SearchBuilder › FoundationThis example shows SearchBuilder being used with the Zurb Foundation CSS framework.
- SearchBuilder › BulmaThis example shows DataTables and the SearchBuilder extension being used with Bulma providing the styling. The DataTables / Bulma integration provides seamless integration for DataTables to be used in a Bulma page.
- SearchBuilder › Bootstrap 5This example shows DataTables and the SearchBuilder extension being used with Bootstrap 5 providing the styling. The DataTables / Bootstrap integration provides seamless integration for DataTables to be used in a Bootstrap 5 page.
- SearchBuilder › Bootstrap 4This example shows DataTables and the SearchBuilder extension being used with Bootstrap 4 providing the styling. The DataTables / Bootstrap integration provides seamless integration for DataTables to be used in a Bootstrap 4 page.
- SearchBuilder › Bootstrap 3This example shows DataTables and the SearchBuilder extension being used with the Bootstrap 3 framework providing the styling. The DataTables / Bootstrap integration provides seamless integration for DataTables to be used in a Bootstrap page.
- SearchBuilder › 50k rowshref="https://datatables.net/manual/server-side">DataTables' server-side processing mode. SearchBuilder adds a number of
Forum
- 15th Jan 2021Automatic add quotes to searchYep, you would need to do the same with the search filter as you are with the columns - i.e. regex. You could re-use the standard input search element as in this example from this thread. Colin
- 11th Jan 2021Search individual filter on standard time failingthat's the issue - the search is being performed by
- 11th Jan 2021Search multiple values on multiple colummsYou would need to use regular expressions with search(), splitting the input string based on your '+' separator. This example here from this thread shows how you can re-use the standard search control, Colin
- 6th Jan 2021Search and Draw if divergents values Columnwant to use a Search Plugin. This example demos
- 31st Dec 2020Filter button does not search for my custom date picker on click.processing? The client side search plugin is not used
- 31st Dec 2020combining $search and $userid in where clause in server filecurrent_user; global $userid; wp_get_current_user(); $search = '%'; $userid = $current_user->ID; // Build our
- 27th Dec 2020search builderyou aren't loading the Search Builder include files. The
- 22nd Dec 2020How can I add a clear button beside the search field ?show up in the search box. So hopefully firefox
- 15th Dec 2020Different search plugin for different columnsbut I have one search plugin for each column
- 14th Dec 2020Define in which columns(sql database) searchbox is allowed to searchYou set the column you don't want searched using columns.searchable to false. The ssp-class.php script follows the SSP protocol described here and will perform the search only if that column has searchable set true. Kevin