Open In App

jQWidgets jqxDocking windowsOffset Property

Last Updated : 05 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. The jqxDocking is used for representing a widget to manage multiple windows and also the layout of a web page. Here each window in the specified jqxDocking can do multiple tasks such as it can be dragged around the Web page, docked into docking zones, removed from the docking, collapsed into a minimized state for hiding its content, and also can be expanded for displaying its content.

The windowsOffset property is used for setting or getting the offset between the windows of the specified jqxDocking.

Syntax:

  • For setting the windowsOffset property:
$('#jqxDocking').jqxDocking({ windowsOffset: 1 });  
  • For getting the windowsOffset property:
var windowsOffset = 
    $('#jqxDocking').jqxDocking('windowsOffset');

Linked Files: Download https://www.jqwidgets.com/download/  from the given link. In the HTML file, locate the script files in the downloaded folder.

<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxdocking.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxwindow.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>

Example: The below example illustrates the jQWidgets windowsOffset property. In the below example, the value of the windowsOffset property has been set to 1.

HTML




<!DOCTYPE html>
<html lang="en">
  
<head>
    <link rel="stylesheet" 
          href="jqwidgets/styles/jqx.base.css" 
          type="text/css"/>
    <script type="text/javascript" 
            src="scripts/jquery.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqxcore.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqxdocking.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqx-all.js">
    </script>
</head>
  
<body>
    <center>
        <h1 style="color: green;">
            GeeksforGeeks
        </h1>
        <h3>
            jQWidgets jqxDocking windowsOffset Property
        </h3>
        <div id="jqx_Docking" style="margin: 25px;" 
             align="left">
            <div>
                <div id="First_Window">
                    <div>First Window</div>
                    <div>
                        <h8>Content of the first window</h8>
                        <ul>
                            <li>GFG</li>
                        </ul>
                    </div>
                </div>
                <div id="Second_Window">
                    <div>Second Window</div>
                    <div>
                        <h8>Content of the second window</h8>
                        <ul>
                            <li>GeeksforGeeks</li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
        <input type="button" style="margin: 29px;" 
               id="jqxbutton_for_windowsOffset"
            value="Value of the windowsOffset property"/>
        <div id="log"></div>
        <script type="text/javascript">
            $(document).ready(function () {
                $("#jqx_Docking").jqxDocking({
                    width: 250,
                    windowsOffset: 1
                });
                $("#jqxbutton_for_windowsOffset").
                    jqxButton({
                        width: 280
                    });
                $('#jqxbutton_for_windowsOffset').on(
                    'click', function () {
                        var Value_of_windowsOffset =
                            $('#jqx_Docking').jqxDocking(
                                'windowsOffset');
                        $("#log").html(JSON.stringify(
                            Value_of_windowsOffset));
                    });
            });
        </script>
    </center>
</body>
  
</html>


Output:

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



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

Similar Reads