Search
14049 results 3201-3210
Forum
- 13th Jun 2017How to search a value in the same page with clickable columns?https://datatables.net/examples/api/tabs_and_scrolling.html in this example Table2 is a default searched value on seacrh box, but I wanna make a clickable value and when I click it It should show the value like the Table2 in the datatable example?.
- 28th Apr 2017I need the search engine to work and filter the dataI get the data from multiple tables, and I need the searcher to filter the data if it appears in any column Please download the code and tell me what I do wrong https://drive.google.com/file/d/0B6Io7u_4OHBTUm9JcHFBemtWX1k/view
- 21st Apr 2017Removing specific search result/ removing 1/2 or 2/2 search resultsdo is remove these searches individually instead of simultaneously!
- 31st Mar 2017my datatable is not printing with pagination and search boxwhen i'm using this plugin to print the datatable from server the pagination and serch box hidden automatically while i'm print table using simple it's work fine, please help me out from this problem My code is < table id="table"class="table table-bordered table-dataTable"> S. No. Employee Code Name Gender Department Designation email and jquery is $(document).ready(function(){ $('#table').DataTable(); });
- 14th Feb 2017Sort, pagination and search functionality not working when I pull data from DB | Python | Django1.9All of the features work when the Data is Raw HTML but the moment I use a For loop to extract data from the DB using Models the table is population perfectly but the above said features do not appear. Below is my Code: <head> <link rel = "stylesheet" href="http://cdn.datatables.net/1.10.13/css/jquery.dataTables.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script> <script src="http://cdn.datatables.net/1.10.13/js/jquery.dataTables.min.js"></script> <script> $(document).ready(function(){ $('#example').DataTable(); }); </script> <meta charset="UTF-8"> <title>Test</title> </head> <table id="example" class="display" cellspacing="0" width="100%"> <thead> <tr> <th>Name</th> <th>Position</th> <th>Office</th> <th>Age</th> <th>Start date</th> </tr> </thead> <tbody> {% for obj in object_list %} <tr> <td> {{obj.title}} </td> <td> {{obj.title}} </td> <td> {{obj.title}} </td> </tr> {% endfor %} </tbody> </table> </body> </html>
- 2nd Feb 2017Search for all rows having an empty cellHi there, i'm struggling to find a solution with latest version of DT. I've a large table with rows that might contain empty values. When these cellsare empty, they already have a css class applied on (<td class="empty">) , as well as the row (<tr class="hasEmpty">). These empty cells can be in any column (except the first which always contains a value - not sure if relevant) Then i'd like to have a button outside the table to show all rows that contain at least one cell which is empty. Is there a way do to this? Based on the empty value as a regExp ? ( '^$' ) Or maybe the class which is already applied ? myTable.columns().search('^$').draw() will return no result. (nor myTable.columns().search('something').draw() , although there is "something" in some cells, not sure why...) Thanks for your help !
- 27th Jan 2017datatables search inside csv regexcan anyone help me on this stackoverflow question :- https://stackoverflow.com/questions/41425765/datatables-search-inside-csv-regex
- 11th Jan 2017how jquery jtable search ,filter and curd oprations all in one table in java mvcplz give the entair code for full length code
- 21st Nov 2016How can I load a DataTable from JQuery when Search is implementedHi Friends, I am developing an application in MVC ASP.Net. I have used Datatables inmy application. I have used model binding for the datatable as follows Script for Datatable $('#tblReports').DataTable({ paging: true, lengthChange: false, searching: false, ordering: true, info: true, autoWidth: true, scrollX: true, dom: 'Bfrtip', buttons: [ 'excel' ] }); HTML table Employee Name Leave Type From Date To Date No of Days Is Half Day Leave Description Status Approved By Approved Date Rejected By Rejected Date Supervisor Comments foreach (var leaveDetail in Model) { if (leaveDetail.LeaveStatusName != "Save" & leaveDetail.LeaveStatusName != "Cancel") { leaveDetail.EmployeeName leaveDetail.LeaveTypeName leaveDetail.FromDate.ToShortDateString() leaveDetail.ToDate.ToShortDateString() if (leaveDetail.HalfDay != null) { if (leaveDetail.ToDate.ToShortDateString() == leaveDetail.FromDate.ToShortDateString()) { ("1"); } else { ((leaveDetail.ToDate - leaveDetail.FromDate).TotalDays); } } else { ("0"); } leaveDetail.HalfDay leaveDetail.EmployeeComments leaveDetail.LeaveStatusName leaveDetail.ApprovedBy leaveDetail.ApprovedDate leaveDetail.RejectedBy leaveDetail.RejectedDate leaveDetail.SupervisorComments } } Now I need to load only the Datatable with out refreshing the page. I am loading the all the views in one master view. Could you help me.
- 10th Nov 2016Dom element not aligned with search fieldHi, I would like to add refresh button to my datatable but I have a problem with the position of the button. I have tried with Custom toolbar elements and with Buttons extension and I have the same problem. This is part of my code acquisitionTable = $('#acquisitionsTable').DataTable({ responsive: true, "bLengthChange": false, deferRender: true, scrollY: '70vh', scrollCollapse: true, scroller: true, dom: 'Bfrtip', buttons: [ { text: 'Refresh<i class="fa fa-refresh"></i>', action: function ( e, dt, node, config ) { alert( 'Button activated' ); } } ], I have attached the image. In browser debug I see: <div class="dt-buttons"> <a class="dt-button" tabindex="0" aria-controls="acquisitionsTable" href="#"> <span>Refresh<i class="fa fa-refresh"></i></span> </a> </div> <div id="acquisitionsTable_filter" class="dataTables_filter"> <label>Search:<input type="search" class="form-control input-sm" placeholder="" aria-controls="acquisitionsTable"> Do you know what is wrong? The buttons css exist but it doesnt load for the specific element.Thanks