-->

martes, 7 de mayo de 2019

46.- Tablas filtreables (JQuery Mobile)

Cómo filtrar una tabla.

Más adelante se puede llenar la tabla con manejo de BD y tablas en PHP y ver un funcionamiento optimo del filtro.

Ejemplo:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>

</head>
<body>
 <div data-role="page" id="pageone">
  <div data-role="header">
   <h1>Tablas filtreables</h1>
  </div>

  <div data-role="main" class="ui-content">
   <form>
    <input id="filterTable-input" data-type="search" placeholder="Search For Customers...">
   </form>

   <table data-role="table" data-mode="columntoggle" class="ui-responsive ui-shadow" id="myTable" data-filter="true" data-input="#filterTable-input">
    <thead>
     <tr>
      <th data-priority="6">CustomerID</th>
      <th>NombreCliente</th>
      <th data-priority="1">NombreContacto</th>
      <th data-priority="2">Dirección</th>
      <th data-priority="3">Ciudad</th>
      <th data-priority="4">Cp</th>
      <th data-priority="5">País</th>
     </tr>
    </thead>

    <tbody>
     <tr>
      <td>1</td>
      <td>Alfreds Futterkiste</td>
      <td>Maria Anders</td>
      <td>Obere Str. 57</td>
      <td>Berlin</td>
      <td>12209</td>
      <td>Germany</td>
     </tr>

     <tr>
      <td>2</td>
      <td>Antonio Moreno Taquer�a</td>
      <td>Antonio Moreno</td>
      <td>Mataderos 2312</td>
      <td>M�xico D.F.</td>
      <td>05023</td>
      <td>Mexico</td>
     </tr>

     <tr>
      <td>3</td>
      <td>Around the Horn</td>
      <td>Thomas Hardy</td>
      <td>120 Hanover Sq.</td>
      <td>London</td>
      <td>WA1 1DP</td>
      <td>UK</td>
     </tr>

     <tr>
      <td>4</td>
      <td>Berglunds snabbk�p</td>
      <td>Christina Berglund</td>
      <td>Berguvsv�gen 8</td>
      <td>Lule�</td>
      <td>S-958 22</td>
      <td>Sweden</td>
     </tr>
    </tbody>
   </table>
  </div>

  <div data-role="footer">
   <h1>Pie de pagina</h1>
  </div>
 </div>

</body>
</html>
Resultado:

No hay comentarios:

Publicar un comentario