jQuery Mobile es un sistema de interfaz de usuario basado en HTML5 diseñado para crear aplicaciones y sitios web receptivos accesibles en todos los teléfonos inteligentes, tabletas y dispositivos de escritorio.
El widget de tabla Column-Toggle permite ocultar/mostrar columnas menos importantes con la ayuda de un botón Columna con casillas de verificación.
En este artículo, vamos a aprender la opción Classes.columnBtn de jQuery Mobile Column-Toggle Table . La opción classes.columnBtn es una clase asignada al botón de cambio de columna.
Sintaxis:
<div class="ui-table-columntoggle-btn"> // content </div>
Parámetro: Esta opción no acepta ningún parámetro/argumento.
Tipo de devolución: esta opción no devuelve ningún valor.
Enlace CDN: a continuación se muestran algunos scripts de jQuery Mobile que se necesitarán para su proyecto, así que agréguelos a su proyecto.
<enlace rel=”hoja de estilo” href=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css” />
<script src=”https://code .jquery.com/jquery-1.11.1.min.js”></script>
<script src=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min .js”></secuencia de comandos>
Ejemplo: Este ejemplo describe la opción Classes.columnBtn de la tabla de alternancia de columnas de jQuery Mobile.
HTML
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" href= "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" /> <script src= "https://code.jquery.com/jquery-1.11.1.min.js"> </script> <script src= "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"> </script> </head> <body> <center> <div data-role="page" id="gfgpage"> <div> <h1 style="color:green;">GeeksforGeeks</h1> </div> <div data-role="main" class="ui-content"> <h3> jQuery Mobile Column-Toggle Table classes.columnBtn Option </h3> <table data-role="table" id="gfg-table-column-toggle" data-mode="columntoggle" class="ui-table-columntoggle-btn" data-column-btn-theme="b"> <thead> <tr> <th>Sl No.</th> <th>Article Title</th> <th data-priority="2">Category</th> <th data-priority="1">Topic</th> </tr> </thead> <tbody> <tr> <th>1</th> <td> <a href= "https://www.geeksforgeeks.org/hashing-data-structure/"> Hashing Data Structure</a></td> <td>Coding</td> <td>Data Structures</td> </tr> <tr> <th>2</th> <td><a href= "https://www.geeksforgeeks.org/graph-data-structure-and-algorithms/"> Graph Data Structure And Algorithms</a> </td> <td>Coding</td> <td>Data Structures</td> </tr> <tr> <th>3</th> <td><a href= "https://www.geeksforgeeks.org/ml-multiple-linear-regression-using-python/"> ML | Multiple Linear Regression using Python</a> </td> <td>Machine Learning</td> <td>Supervised Learning</td> </tr> <tr> <th>4</th> <td><a href= "https://www.geeksforgeeks.org/implementing-dbscan-algorithm-using-sklearn/"> Implementing DBSCAN algorithm using Sklearn</a> </td> <td>Machine Learning</td> <td>Unsupervised Learning</td> </tr> </tbody> </table> </div> </div> </center> </body> </html>
Producción:
Referencia: https://api.jquerymobile.com/jQuery-Mobile-Panel, jQuery-Mobile, -columntoggle/#option-classes.columnBtn
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA