Open In App

jQWidgets jqxSortable cursorAt Property

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 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 cursorAt property is used to define the position where it is being displayed while dragging. The position coordinates can be given as a hash by using a combination of one or two keys: { top, left, right, bottom }. It accepts object type values and its default value is false.

Syntax:

  • It is used to set the cursorAt property.
    $('Selector').jqxSortable({ cursorAt : object});
  • It is used to return the cursorAt property.
    var cursorAt = $('Selector').jqxSortable('cursorAt ');

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 cursorAt 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 cursorAt property</h3>
    <div id="sort1">
        <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>    
    
    <script type="text/javascript">
        $(document).ready(function () {
            $("#sort1").jqxSortable({
               cursorAt: { left: 5, top:5 }
            });
        });
    </script>
</body>
  
</html>


Output:

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



Last Updated : 14 Nov, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads