Search
11316 results 461-470
Forum
- 11th Oct 2013On Create Default Column filter AJAX CallSo you want to set the filter in the initialisation object? Just use the option to do that: aoSearchCols Allan
- 3rd Oct 2013Column filter in head no style:( sadness lol, the problem seems to be with themeroller. Has anyone got column filter to work with themeroller themes ?
- 2nd Oct 2013Filter breaks sortingfunction _fnReDraw [code] if (filter) { _fnFilterComplete(settings, settings.oPreviousSearch); } else { // No filtering, so we want to
- 18th Sep 2013Filter Problem - getting error on _ functionSearchFunction() { var results = $("#table").dataTable()._('tr', { "filter": "applied" }); //line 18 } Export
- 5th Sep 2013Multiple Headers: Filter enabled with Sort DisabledI tried that, but filter functionality still does not
- 31st Aug 2013Multiple Choice FilterSo basically an OR filter? You can use the
- 23rd Aug 2013Disable Smart Filter and Enable Regex Filteringtype Webkit|Presto into the filter it does the expected OR. Try disabling the filtering delay plug-in. I think
- 21st Aug 2013Filter by an array?If you are using server-side processing, then all filtering is done at the server. So you'd need to integrate the custom filter into your server-side script - whatever language / platform that might be in! Allan
- 20th Aug 2013Datatable with alphabetical filter rowUse the fnFilter method to filter the table. You'll obviously need to create the A-Z links, but when clicked on, just trigger fnFilter as needed. Allan
- 19th Aug 2013Adding id and for attribute to filter box and length dropdown elements of data tableThe filter input is inside the label which creates an implicit connection between the input and the label - there is no need for a for attribute (which creates an explicit connection). This is defined in the HTML specification: http://www.w3.org/TR/html401/interact/forms.html#adef-for . Allan