Horje
jQWidgets jqxSortable tolerance Property

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. The jqxSortable represents a jQuery plugin that allows you to reorder elements in an Html list or div tags using the mouse.

The tolerance property is used to set or return the mode of testing while hovering other items. It accepts string/function type values and its default value is ‘intersect’.

Syntax:

  • It is used to set the tolerance property

    $('Selector').jqxSortable({ tolerance : string/function});
  •  

  • It is used to return the tolerance property.

    var tolerance = $('Selector').jqxSortable('tolerance')

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/gloĊbalize.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxsortable.js”></script>

Example: The below example illustrates the jqxSortable tolerance 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 tolerance property</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>
  
    <script type="text/javascript">
        $(document).ready(function () {
            $("#sort1").jqxSortable({
                tolerance: 'pointer'            
            });
        });
    </script>
</body>
  
</html>

Output:

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




Reffered: https://www.geeksforgeeks.org


JQuery

Related
jQWidgets jqxTagCloud takeTopWeightedItems Property jQWidgets jqxTagCloud takeTopWeightedItems Property
How to Change Date Format in jQuery UI DatePicker ? How to Change Date Format in jQuery UI DatePicker ?
How to select multiple elements using jQuery ? How to select multiple elements using jQuery ?
jQWidgets jqxTreeMap colorRange Property jQWidgets jqxTreeMap colorRange Property
jQWidgets jqxGrid cellselect Event jQWidgets jqxGrid cellselect Event

Type:
Geek
Category:
Coding
Sub Category:
Tutorial
Uploaded by:
Admin
Views:
11