jQuery UI es una tecnología basada en la web y consta de widgets de GUI, efectos visuales y temas implementados mediante jQuery ,Biblioteca de JavaScript . jQuery UI es la mejor herramienta para crear interfaces de interfaz de usuario para las páginas web. También se puede usar para crear aplicaciones web altamente interactivas o se puede usar para agregar widgets fácilmente.
En este artículo, aprenderemos a usar la opción de cuadrícula clasificable de jQuery UI . Con esta opción, podemos ajustar el elemento de clasificación o el asistente a una cuadrícula, cada xey píxeles. El valor predeterminado de esta opción es falso.
Sintaxis:
La opción de cuadrícula toma un valor de array y la sintaxis es la siguiente.
$( ".selector" ).sortable({ grid: [ 20, 10 ] });
Obtener la opción de cuadrícula
var grid = $( ".selector" ).sortable( "option", "grid" );
Establecer la opción de cuadrícula
$( ".selector" ).sortable( "option", "grid", [ 20, 10 ] );
Enlace CDN: Se necesitarán los siguientes scripts de jQuery Mobile para su proyecto, por lo que debemos agregar estos scripts a su proyecto.
<enlace rel=”hoja de estilo” href=”https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css”>
<script src= “https://code.jquery. com/jquery-1.12.4.js”></script>
<script src= “https://code.jquery.com/ui/1.12.1/jquery-ui.js”></script>
Ejemplo: este ejemplo describe los usos de la opción de cuadrícula clasificable de jQuery UI.
HTML
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <link rel="stylesheet" href= "https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src= "https://code.jquery.com/jquery-1.12.4.js"> </script> <script src= "https://code.jquery.com/ui/1.12.1/jquery-ui.js"> </script> <style> #sortable { list-style-type: none; width: 50%; } #sortable li { margin: 10px 0; padding: 0.5em; font-size: 25px; height: 20px; background-color: green; } #btn { margin-left: 50px; padding: 0.5; font-size: 20px; height: 40px; width: 40%; } </style> <script> $(function () { $("#btn").on('click', function () { var grid = $("#sortable").sortable( "option", "grid" ); document.getElementById('gfg').innerHTML += "Grid pixels : " + grid; }); }); $(function () { $("#sortable").sortable(); $("#sortable").sortable( "option", "grid", [ 20, 10 ] ); }); </script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h4>jQuery UI Sortable grid Option</h4> <ul id="sortable"> <li>Geeks1</li> <li>Geeks2</li> <li>Geeks3</li> </ul> <input type="button" id="btn" value="Get Grid"> <h4><span id="gfg"></span></h4> </center> </body> </html>
Producción:
Referencia: https://api.jqueryui.com/sortable/#option-grid
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA