Open In App

jQWidgets jqxDockPanel lastchildfill 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, 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 lastchildfill property is used for setting or getting the lastchildfill property for the specified jqxDockPanel. When its value is true, the last child gets the available width and height.

Syntax:

  • For setting the lastchildfill property:

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

  • For getting the lastchildfill property:

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

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/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 lastchildfill Property. In the below example, the value for the lastchildfill 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 lastchildfill Property
        </h3>
  
        <div id='jqx_DockPanel'>
            <div style='background: red;'>
                First</div>
            <div style='background: green;'>
                Second</div>
            <div style='background: yellow;'>
                Third</div>
            <div style='background: blue;'>
                Fourth</div>
        </div>
  
        <input type="button" style="margin: 5px;" 
               id="button_for_lastchildfill" 
               value="Value of the lastchildfill property"/>
  
        <div id="log"></div>
  
        <script type="text/javascript">
            $(document).ready(function () {
                $("#jqx_DockPanel").jqxDockPanel({
                    width: 350,
                    height: 100,
                    disabled: true,
                    lastchildfill: true
                });
  
                $("#button_for_lastchildfill").jqxButton({
                    width: 350,
                    theme: 'energyblue'
                });
  
                $('#button_for_lastchildfill')
                .jqxButton().click(function () {
                    var value_of_lastchildfill =
                        $('#jqx_DockPanel')
                        .jqxDockPanel('lastchildfill');
                    $("#log").html(value_of_lastchildfill);
                })
            });
        </script>
    </center>
</body>
  
</html>


Output:

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



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