Open In App

jQWidgets jqxDockPanel disabled Property

Last Updated : 30 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 jqxDockPanel is used for representing a container for the widgets or elements that arrange their inner elements depending on the value of the ‘dock’ attribute. Left, right, top and bottom are the possible ‘dock’ attribute values.

The disabled property is used for setting or getting whether the specified jqxDockPanel is disabled or not.

Syntax:

  • For setting the disabled property:

    $('#jqxDockPanel').jqxDockPanel({ disabled: true });  
  •  

  • For getting the disabled property:

    var disabled = $('#jqxDockPanel').jqxDockPanel('disabled');

Linked Files: Download jQWidgets 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/jqxbuttons.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxdockpanel.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>

Example: The below example illustrates the jQWidgets jqxDockPanel disabled Property. In the below example, the value for the disabled property has been set to true.

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/jqxbuttons.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqxdockpanel.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqx-all.js">
    </script>
</head>
  
<body>
    <center>
        <h1 style="color:green;">
            GeeksforGeeks
        </h1>
        <h3>
            jQWidgets jqxDockPanel disabled Property
        </h3>
        <div id='jqx_DockPanel'>
            <div style='height: 40px; 
                        background: red;'>
              First</div>
            <div style='height: 40px; 
                        background: green;'>
              Second</div>
            <div style='height: 40px; 
                        background: yellow;'>
              Third</div>
            <div style='height: 40px; 
                        background: blue;'>
              Fourth</div>
        </div>
        <input type="button" style="margin: 25px;" 
               id="button_for_disabled"
               value="Value of the disabled property"/>
        <div id="log"></div>
        <script type="text/javascript">
            $(document).ready(function () {
                $("#jqx_DockPanel").jqxDockPanel({
                    width: 300,
                    height: 210,
                    disabled: true
                });
                $("#button_for_disabled").jqxButton({
                    width: 350,
                    theme: 'energyblue'
                });
                $('#button_for_disabled').jqxButton().
                    click(function () {
                        var value_of_disabled =
              $('#jqx_DockPanel').jqxDockPanel('disabled');
                        $("#log").html(value_of_disabled);
                    })
            });
        </script>
    </center>
</body>
  
</html>


Output:

Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxdockpanel/jquery-dockpanel-api.htm



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads