VOOZH about

URL: https://www.geeksforgeeks.org/jquery/jqwidgets-jqxdocking-mode-property/

⇱ jQWidgets jqxDocking mode Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

jQWidgets jqxDocking mode Property

Last Updated : 2 Nov, 2021

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 mode property is used for setting or getting the mode of the specified jqxDocking. This property accepts three possible values that are illustrated below:

  • 'default': Using this value, the user can drop each window inside any docking panel or outside the docking panels.
  • 'docked': Using this value, the user can drop each window just into the docking panels.
  • 'floating':  Using this value, the user can drop any window just outside of the docking panels.

Syntax:

  • For setting the mode property:

    $('#jqxDocking').jqxDocking({ mode: 'floating' }); 
  •  
  • For getting the mode property:

    var mode = $('#jqxDocking').jqxDocking('mode');

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>

Example: The below example illustrates the jQWidgets mode property. In the below example, the value of the mode property has been set to 'floating'.

Output:

👁 Image

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

Comment

Explore