Open In App

jQWidgets jqxSortable disable() Method

Last Updated : 19 Nov, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. jqxSortable represents a jQuery plugin that allows you to reorder elements in an HTML list or div tags using the mouse.

The disable() method is used to disable the sortable. It does not take any parameter and does not return any value.

Syntax:

var disable = $('#jqxSortable').jqxSortable('disable');

 

Linked Files: Download from the link. In the HTML file, locate the script files in the downloaded folder:

<link type=”text/css” rel=”Stylesheet” href=”jqwidgets/styles/jqx.base.css” />
<script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/globalization/globalize.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxsortable.js”></script>

Example: The below example illustrates the jqxSortable disable() method in jQWidgets.

HTML




<!DOCTYPE html>
<html lang="en">
    
<head>
    <link type="text/css" rel="stylesheet" 
          href="jqwidgets/styles/jqx.base.css" />
    <script type="text/javascript" 
            src="scripts/jquery-1.11.1.min.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqxcore.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/globalization/globalize.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqxsortable.js">
    </script>
</head>
    
<body>
    <h1 style="color:green">
          GeeksforGeeks 
    </h1>
    <h3>jQWidgets jqxSortable disable() method</h3>
  
    <div class="gfg">
        <div id="sort1">
            <div><li>C</li></div>
            <div><li>C++</li></div>
            <div><li>Python</li></div>
            <div><li>HTML</li></div>
            <div><li>CSS</li></div>
            <div><li>JavaScript</li></div>
        </div
    </div>
  
    <button id="buttonID">Disable</button>
  
    <script type="text/javascript">
        $(document).ready(function () {
            $("#sort1").jqxSortable({
            });
  
            $('#buttonID').click(function(){
                $("#sort1").jqxSortable("disable");
            })
        });
    </script>
</body>
</html>


Output:

Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxsortable/jquery-sortable-api.htm?search=



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads