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 columnBtnText de jQuery Mobile Column-Toggle Table . La opción columnBtnText establece el texto del botón Columna , que por defecto es ‘ Columnas…’, que se puede cambiar con esta opción.
Sintaxis : la opción columnBtnText toma un valor de string y se inicializa de la siguiente manera:
$("#gfg-table-column-toggle").table-columntoggle({ columnBtnText: "Show columns" });
Para obtener después de la inicialización, use la siguiente sintaxis.
var columnBtnTextOpt = $("#gfg-table-column-toggle") .table-columntoggle("option", "columnBtnText");
Para establecer después de la inicialización, use la siguiente sintaxis.
$("#gfg-table-column-toggle").table-columntoggle( "option", "columnBtnText", "Show columns");
Vínculos de CDN : use los siguientes CDN para su proyecto de jQuery Mobile.
<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 : en el siguiente ejemplo, la opción columnBtnText se establece en «Mostrar columnas» .
HTML
<!DOCTYPE html> <html lang="en"> <head> <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> <div data-role="page" id="gfgpage"> <div data-role="header"> <h1 style="color: green;">GeeksforGeeks</h1> </div> <div data-role="main" class="ui-content"> <h3> jQuery Mobile Column-Toggle Table columnBtnText Option</h3> <table data-role="table" id="gfg-table-column-toggle" data-mode="columntoggle" class="ui-responsive table-stroke" data-enhanced="false" data-column-btn-text="Show columns"> <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> <script> $("#gfg-table-column-toggle").table - columntoggle({ columnBtnText: "Show columns" }); </script> </body> </html>
Producción:
Referencia: https://api.jquerymobile.com/table-columntoggle/#option-columnBtnText
Publicación traducida automáticamente
Artículo escrito por manavsarkar07 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA