Search
13904 results 1131-1140
Forum
- 26th Feb 2016datatable search button next to filter text box, move search to top leftThe HTML for the search field is <div id="DataTables_Table_0_filter" class="dataTables_filter"> <label>Search:<input type="search" class="" placeholder="" aria-controls="DataTables_Table_0"></label> </div> I solved this by adding my own styling .dataTables_filter { float: left; }
- 25th Feb 2016Alphabet Search Implementationmy other post... Alphabet search with Ajax populated DataTable.
- 23rd Feb 2016Bootstrap 3 Styling Does Not Provide Search Filter Clear Icon [SOLUTION PROVIDED]styling available on the search input is (which to
- 15th Feb 2016server side searchgot it... $search = $_POST['search']; if (!empty($search['value'])) { $sql .= " Having searchField like '%".$search['value']."%'"; } $orderBy = $_POST['order']; $orderCol = intval($orderBy[0]['column']); $sql .= " order by " . $orderCol . " " . $orderBy[0]['dir']; where searchField is a concat of all the fields displayed in the table.
- 11th Feb 2016Data Table individual search box is not showing.write in the individual search column then it will
- 4th Feb 2016Search table with input fields in cellsHi Alex, You would need to implement a custom search plug-in. Allan
- 31st Jan 2016Search on hidden columns not workingis for the built-in search field to work normally
- 20th Jan 2016Disabling smart search does not actually disable itPer the forum rules, please link to a test case showing the issue. Also the search option should not be an array. Allan
- 19th Jan 2016how to use filter() on a search() result ?a custom function to search a table you need
- 18th Jan 2016ID for moved search boxI don't believe the search box DataTables adds ever has an id. It certainly wouldn't be stripped just because you moved it. What makes you think it had an id in the first place? Allan