Name | Type | Default |
contextMenu
|
Boolean
|
false
|
Sets or gets wheter a custom context menu will appear when certain elements of the widget are right-clicked.
<template> <JqxDockingLayout ref="myDockingLayout" :width="850" :height="600" :layout="layout" :contextMenu="true"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel'
Get the contextMenu property. let contextMenu = this.$refs.myDockingLayout.contextMenu;
|
height
|
Number | String
|
null
|
Sets or gets the docking layout's height.
<template> <JqxDockingLayout ref="myDockingLayout" :width="850" :height="600" :layout="layout"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel'
Get the height property. let height = this.$refs.myDockingLayout.height;
|
layout
|
Array
|
[]
|
Sets or gets the layout. This property determines the position of the docking layout elements and their characteristics. The first member of the layout array should always be an item of type 'layoutGroup'.
Each object in the layout array can have the following properties, with some restrictions based on the type :
- type. Possible values:
- 'layoutGroup' - container for other groups. It has no visual features. The root item is always of this type.
- 'tabbedGroup' - a group that contains layoutPanels. It is represented by a jqxWindow-like panel with a bottom-aligned jqxRibbon inside.
- 'documentGroup' - a group that contains documentPanels. It is represented by a top-aligned jqxRibbon.
- 'autoHideGroup' - a group that contains layoutPanels. It is represented by a jqxRibbon with
mode: 'popup' . Each ribbon item has a jqxWindow-like panel in its content. This group has to be either the first or the last child item of its parent layoutGroup.
- 'layoutPanel' - a panel that can be inserted in a tabbedGroup or autoHideGroup. When it is in a tabbedGroup it is represented by a ribbon item and in an autoHideGroup - by a jqxWindow-like panel inside a ribbon item.
- 'documentPanel' - a panel that can be inserted in a documentGroup. It is represented by a ribbon item.
- 'floatGroup' - a floating group that can contain a tabbedGroup or a layoutPanel. It is represented by a jqxWindow. Initial floatGroups have to be defined after the root layoutGroup in the layout array.
- alignment - sets the alignment of an autoHideGroup. Possible values:
- 'left'
- 'right'
- 'top'
- 'bottom'
- allowClose - applicable to tabbedGroups, floatGroups, layoutPanels and documentPanels. If set to false, the group/panel cannot be closed.
- allowPin - applicable only to tabbedGroups. If set to false, the group cannot be pinned.
- allowUnpin - applicable only to autoHideGroups. If set to false, the group cannot be unpinned.
- contentContainer - indicates which HTML element has the content of the panel. The required value is the value of an existing HTML element's data-container attribute. N/A to groups.
- height - sets the height of a group (N/A to panels). Used only if the parent group's orientation is 'vertical' or for floatGroups. The heights of all such groups have to be set either in pixels or percents (not a mix of both).
- initContent - a callback function to be called when a panel is opened for the first time. Useful for initializing widgets in panels. N/A to groups.
- minHeight - sets the minimumn height (in pixels) of a group which is vertically aligned within its parent group. Disregards the value of the minGroupHeight property.
- minWidth - sets the minimumn width (in pixels) of a group which is horizontally aligned within its parent group. Disregards the value of the minGroupWidth property.
- orientation - orients child items either horizontally or vertically. Applicable only to layoutGroups. Possible values:
- pinnedHeight - sets what the height of a tabbedGroup will be after it is pinned.
- pinnedWidth - sets what the width of a tabbedGroup will be after it is pinned.
- position - sets the initial position of a floatGroup. The position property is an object with the following properties:
- selected - sets whether a panel is initially selected. N/A to groups.
- title - sets the title of a panel. Represented by the corresponding ribbon item's title. N/A to groups.
- unpinnedHeight - sets what the height of an autoHideGroup will be after it is unpinned.
- unpinnedWidth - sets what the width of an autoHideGroup will be after it is unpinned.
- width - sets the width of a group (N/A to panels). Used only if the parent group's orientation is 'horizontal' or for floatGroups. The widths of all such groups have to be set either in pixels or percents (not a mix of both).
- items - an array of item objects with the fields described above. N/A to panels.
<template> <JqxDockingLayout ref="myDockingLayout" :width="850" :height="600" :layout="layout"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel'
Get the layout property. let layout = this.$refs.myDockingLayout.layout;
|
minGroupHeight
|
Number
|
100
|
Sets the default minimumn height for groups which are vertically aligned within their parent group.
<template> <JqxDockingLayout ref="myDockingLayout" :width="850" :height="600" :layout="layout" :minGroupHeight="200"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel'
Get the minGroupHeight property. let minGroupHeight = this.$refs.myDockingLayout.minGroupHeight;
|
minGroupWidth
|
Number
|
100
|
Sets the default minimumn width for groups which are horizontally aligned within their parent group.
<template> <JqxDockingLayout ref="myDockingLayout" :width="850" :height="600" :layout="layout" :minGroupWidth="150"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel'
Get the minGroupWidth property. let minGroupWidth = this.$refs.myDockingLayout.minGroupWidth;
|
resizable
|
Boolean
|
true
|
Sets or gets wheter panels can be dynamically resized.
<template> <JqxDockingLayout ref="myDockingLayout" :width="850" :height="600" :layout="layout" :resizable="false"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel'
Get the resizable property. let resizable = this.$refs.myDockingLayout.resizable;
|
rtl
|
Boolean
|
false
|
Sets or gets a value indicating whether widget's elements are aligned to support locales using right-to-left fonts.
<template> <JqxDockingLayout ref="myDockingLayout" :width="850" :height="600" :layout="layout" :rtl="true"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel'
Get the rtl property. let rtl = this.$refs.myDockingLayout.rtl;
|
theme
|
String
|
''
|
Sets the widget's theme.
<template> <JqxDockingLayout ref="myDockingLayout" :width="850" :height="600" :layout="layout" :theme="'material'"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel'
|
width
|
Number | String
|
null
|
Sets or gets the docking layout's width.
<template> <JqxDockingLayout ref="myDockingLayout" :width="850" :height="600" :layout="layout"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel'
Get the width property. let width = this.$refs.myDockingLayout.width;
|
|
dock
|
Event
|
|
This event is triggered when a floatGroup has been docked.
Code examples
Bind to the dock event of jqxDockingLayout.
<template> <JqxDockingLayout ref="myDockingLayout" @dock="onDock($event)" :width="850" :height="600" :layout="layout"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel' }] }] } ] } }, methods: { onDock: function (event) { alert( 'do something...');
|
floatGroupClosed
|
Event
|
|
This event is triggered when a floatGroup has been closed.
Code examples
Bind to the floatGroupClosed event of jqxDockingLayout.
<template> <JqxDockingLayout ref="myDockingLayout" @floatGroupClosed="onFloatGroupClosed($event)" :width="850" :height="600" :layout="layout"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel' }] }] } ] } }, methods: { onFloatGroupClosed: function (event) { alert( 'do something...');
|
float
|
Event
|
|
This event is triggered when a group or panel has been floated.
Code examples
Bind to the float event of jqxDockingLayout.
<template> <JqxDockingLayout ref="myDockingLayout" @float="onFloat($event)" :width="850" :height="600" :layout="layout"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel' }] }] } ] } }, methods: { onFloat: function (event) { alert( 'do something...');
|
pin
|
Event
|
|
This event is triggered when a group has been pinned.
Code examples
Bind to the pin event of jqxDockingLayout.
<template> <JqxDockingLayout ref="myDockingLayout" @pin="onPin($event)" :width="850" :height="600" :layout="layout"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel' }] }] } ] } }, methods: { onPin: function (event) { alert( 'do something...');
|
resize
|
Event
|
|
This event is triggered when a group has been resized (when the group has been resized with the mouse or when an adjacent group has been pinned, unpinned or closed).
Code examples
Bind to the resize event of jqxDockingLayout.
<template> <JqxDockingLayout ref="myDockingLayout" @resize="onResize($event)" :width="850" :height="600" :layout="layout"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel' }] }] } ] } }, methods: { onResize: function (event) { alert( 'do something...');
|
unpin
|
Event
|
|
This event is triggered when a group has been unpinned.
Code examples
Bind to the unpin event of jqxDockingLayout.
<template> <JqxDockingLayout ref="myDockingLayout" @unpin="onUnpin($event)" :width="850" :height="600" :layout="layout"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel' }] }] } ] } }, methods: { onUnpin: function (event) { alert( 'do something...');
|
|
Name | Arguments | Return Type |
addFloatGroup
|
width, height, position, panelType, title, content, initContent
|
None
|
Adds a new floatGroup.
<template> <JqxDockingLayout ref="myDockingLayout" :width="850" :height="600" :layout="layout"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel' }] }] } ] } }, mounted: function () { this.$refs.myDockingLayout.addFloatGroup(200,200,{x:10, y:10}, 'layoutPanel','Title','Content');
|
destroy
|
None
|
None
|
Destroys the widget.
<template> <JqxDockingLayout ref="myDockingLayout" :width="850" :height="600" :layout="layout"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel' }] }] } ] } }, mounted: function () { this.$refs.myDockingLayout.destroy();
|
loadLayout
|
layout
|
None
|
Loads a previously saved layout.
<template> <div> <JqxButton @click="onSave($event)" :width="110" :height="18">Save layout</JqxButton> <JqxButton @click="onLoad($event)" :width="110" :height="18">Load layout</JqxButton> <br/> <JqxDockingLayout ref="myDockingLayout" :width="850" :height="600" :layout="layout"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout> </div></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; import JqxButton from "jqwidgets-scripts/jqwidgets-vue/vue_jqxbuttons.vue"; export default { components: { JqxDockingLayout, JqxButton }, data: function () { return { savedLayout: null, layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel' }] }] } ] } }, methods: { onSave() { this.savedLayout = this.$refs.myDockingLayout.saveLayout(); }, onLoad() { this.$refs.myDockingLayout.loadLayout(this.savedLayout);
|
refresh
|
None
|
None
|
Refreshes the widget.
<template> <JqxDockingLayout ref="myDockingLayout" :width="850" :height="600" :layout="layout"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel' }] }] } ] } }, mounted: function () { this.$refs.myDockingLayout.refresh();
|
render
|
None
|
None
|
Renders the widget.
<template> <JqxDockingLayout ref="myDockingLayout" :width="850" :height="600" :layout="layout"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel' }] }] } ] } }, mounted: function () { this.$refs.myDockingLayout.render();
|
saveLayout
|
None
|
Object
|
Saves the current layout of the widget. The object returned by this method can be passed to the method loadLayout.
<template> <JqxDockingLayout ref="myDockingLayout" :width="850" :height="600" :layout="layout"> <div data-container='Document1Panel'> Document 1 Content </div> <div data-container='Document2Panel'> Document 2 Content </div> <div data-container='ErrorListPanel'> List of Errors </div> <div data-container='OutputPanel'> Output </div> <div data-container='SolutionExplorerPanel'> Solution Structure </div> <div data-container='PropertiesPanel'> List of properties </div> </JqxDockingLayout></template> <script> import JqxDockingLayout from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxdockinglayout.vue'; export default { components: { JqxDockingLayout }, data: function () { return { layout: [ { type: 'layoutGroup', orientation: 'horizontal', items: [{ type: 'layoutGroup', orientation: 'vertical', width: '60%', items: [{ type: 'documentGroup', height: '50%', minHeight: '25%', items: [{ type: 'documentPanel', title: 'Document 1', contentContainer: 'Document1Panel' }, { type: 'documentPanel', title: 'Document 2', contentContainer: 'Document2Panel' }] }, { type: 'tabbedGroup', height: '50%', pinnedHeight: '10%', items: [{ type: 'layoutPanel', title: 'Error List', contentContainer: 'ErrorListPanel' }, { type: 'layoutPanel', title: 'Output', contentContainer: 'OutputPanel', selected: true }] }] }, { type: 'tabbedGroup', width: '40%', items: [{ type: 'layoutPanel', title: 'Solution Explorer', contentContainer: 'SolutionExplorerPanel' }, { type: 'layoutPanel', title: 'Properties', contentContainer: 'PropertiesPanel' }] }] } ] } }, mounted: function () { const value = this.$refs.myDockingLayout.saveLayout();
|