Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

jQWidgets jqxSortable connectWith Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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

The connectWith property is used to make a selector that is used to connect other lists. It accepts boolean/string type values and its default value is true.

Syntax:

  • Set the connectWith property:

    $('jqxSortable').jqxSortable({ connectWith : boolean/string });
  •  

  • Return the connectWith property:

    var connectWith = $('Selector').jqxSortable('connectWith');

Linked Files: Download jQWidgets from the given 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 connectWith property 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 connectWith property</h3>
    <div id="sort">
        <div class='gfg'><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>
  
    <br/>
  
    <div id="sort2">
        <div class='gfg'><li>C</li></div>
        <div><li>C++ 2</li></div>
        <div><li>Python 2</li></div>
        <div><li>HTML 2</li></div>
        <div><li>CSS 2</li></div>
        <div><li>JavaScript 2</li></div>
    </div>
      
    
    <script type="text/javascript">
        $(document).ready(function () {
            $("#sort").jqxSortable({
               connectWith: "#sort2"
            });
  
            $("#sort2").jqxSortable({
               connectWith: "#sort"
            });
        });
    </script>
</body>
  
</html>

Output:

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


My Personal Notes arrow_drop_up
Last Updated : 14 Nov, 2021
Like Article
Save Article
Similar Reads
Related Tutorials