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 jQuery UI Sortable dropOnEmpty. Con esta opción , los elementos de este ordenable no se pueden colocar en un ordenable de conexión vacío, si se establece en falso.
Sintaxis:
La opción dropOnEmpty toma un valor booleano y la sintaxis es la siguiente. Si es falso, no se puede colocar ningún elemento en un ordenable de conexión vacío y viceversa.
$( ".selector" ).sortable({ dropOnEmpty: false });
-
Obtener la opción dropOnEmpty
var dropOnEmpty = $( ".selector" ) .sortable( "option", "dropOnEmpty" );
-
Establezca la opción dropOnEmpty
$( ".selector" ).sortable( "option", "dropOnEmpty", false );
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 jQuery UI Sortable dropOnEmpty.
HTML
<!DOCTYPE html> <html lang="en"> <head> <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> .list { background-color: green; border: 1px solid gray; } .items { list-style-type: none; margin-left: 5px; padding: 0; width: 200px; float: left; } .items li { margin: 5px; padding: 5px; cursor: pointer; border-radius: 5px; font-size: 20px; } .o { background-color: #00ff44; } </style> <script> $(function () { $("#sortable1,#sortable3").sortable({ connectWith: "#sortable3", dropOnEmpty: true }); $("#sortable2").sortable({ connectWith: "#sortable3", dropOnEmpty: false }); $("#sortable1, #sortable2, #sortable3").disableSelection(); }); </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h4>jQuery UI Sortable dropOnEmpty Option</h4> <ul id="sortable1" class="items"> <li class="list">Drop on empty</li> <li class="list">Drop on empty</li> </ul> <ul id="sortable2" class="items"> <li class="list o">No drop on empty</li> <li class="list o">No drop on empty</li> </ul> <ul id="sortable3" class="items" style="height:200px;background-color:#a0ff94"> </ul> </center> </body> </html>
Producción:
Referencia: https://api.jqueryui.com/sortable/#option-dropOnEmpty
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA