Advanced search and filtering in Datatables
- Wordpress
جستجوی پیشرفته در Datatables
این افزونه searchPanes برای DataTables است. این اجازه می دهد تا نتایج بر اساس مقادیر ستون ها فیلتر شوند. <!DOCTYPE HTML> <html> <head> <title>Untitled</title> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/select/1.6.2/css/select.dataTables.min.css"> <script src="https://code.jquery.com/jquery-3.5.1.js"></script> <script src="https://cdn.datatables.net/1.13.4/js/jquery.dataTables.min.js"></script> </head> <body> <table id="inventory_list" class="display" style="width:100%"> <thead> <tr> <th>Na111me</th> <th>Po1111sition</th> <th>Of1111fice</th> <th>Ag1111e</th> <th>St1111art date</th> <th>Sal2222ary</th> </tr> </thead> <tbody> <tr> <td>Tiger Nixon</td> <td>System Architect</td> <td>Edinburgh</td> <td>61</td> <td>2011-04-25</td> <td>$320,800</td> </tr> <tr> <td>Garrett Winters</td> <td>Accountant</td> <td>Tokyo</td> <td>63</td> <td>2011-07-25</td> <td>$170,750</td> </tr> <tr>…
بیشتر بخوانید »