Name | Type | Default |
disabled
|
Boolean
|
false
|
Sets or gets the disabled property.
<template> <JqxSplitter ref="mySplitter" :width="600" :height="600" :disabled="true"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue';
|
height
|
Number | String
|
300
|
Sets or gets the jqxSplitter's height.
<template> <JqxSplitter ref="mySplitter" :width="600" :height="600"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue';
|
orientation
|
String
|
'vertical'
|
Sets or gets the orientation property.
<template> <JqxSplitter ref="mySplitter" :width="600" :height="600" :orientation="'horizontal'"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue';
|
panels
|
Array
|
[]
|
Sets or gets the panels property.
- size - sets the panel's size.
- min - sets the panel's minimum size.
- collapsible - sets whether the panel is collapsible.
- collapsed - sets whether the panel is collapsed.
<template> <JqxSplitter ref="mySplitter" :width="600" :height="600" :panels="panels"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue'; export default { components: { JqxSplitter }, data: function () { return { panels: [{ size: 100 }, { size: 200 }]
|
resizable
|
Boolean
|
true
|
Sets or gets the resizable property. When this property is set to false, the user will not be able to move the split bar.
<template> <JqxSplitter ref="mySplitter" :width="600" :height="600" :resizable="false"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue';
|
splitBarSize
|
Number
|
5
|
Sets or gets the size of the split bar.
<template> <JqxSplitter ref="mySplitter" :width="600" :height="600" :splitBarSize="10"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue';
|
showSplitBar
|
Boolean
|
true
|
Sets or gets whether the split bar is displayed.
<template> <JqxSplitter ref="mySplitter" :width="600" :height="600" :showSplitBar="false"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue';
|
theme
|
String
|
''
|
Sets the widget's theme.
<template> <JqxSplitter ref="mySplitter" :width="600" :height="600" :theme="'material'"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue';
|
width
|
Number | String
|
300
|
Sets or gets the jqxSplitter's width.
<template> <JqxSplitter ref="mySplitter" :width="600" :height="600"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue';
|
|
collapsed
|
Event
|
|
This event is triggered when a panel is collapsed.
Code examples
Bind to the collapsed event of jqxSplitter.
<template> <JqxSplitter ref="mySplitter" @collapsed="onCollapsed($event)" :width="600" :height="600"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue'; export default { components: { JqxSplitter }, methods: { onCollapsed: function (event) { alert( 'do something...');
|
expanded
|
Event
|
|
This event is triggered when a panel is expanded.
Code examples
Bind to the expanded event of jqxSplitter.
<template> <JqxSplitter ref="mySplitter" @expanded="onExpanded($event)" :width="600" :height="600"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue'; export default { components: { JqxSplitter }, methods: { onExpanded: function (event) { alert( 'do something...');
|
resize
|
Event
|
|
This event is triggered when the 'resize' operation has ended.
Code examples
Bind to the resize event of jqxSplitter.
<template> <JqxSplitter ref="mySplitter" @resize="onResize($event)" :width="600" :height="600"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue'; export default { components: { JqxSplitter }, methods: { onResize: function (event) { alert( 'do something...');
|
resizeStart
|
Event
|
|
This event is triggered when the 'resizeStart' operation has started.
Code examples
Bind to the resizeStart event of jqxSplitter.
<template> <JqxSplitter ref="mySplitter" @resizeStart="onResizeStart($event)" :width="600" :height="600"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue'; export default { components: { JqxSplitter }, methods: { onResizeStart: function (event) { alert( 'do something...');
|
|
Name | Arguments | Return Type |
collapse
|
None
|
None
|
Collapse a panel.
<template> <JqxSplitter ref="mySplitter" :width="600" :height="600"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue'; export default { components: { JqxSplitter }, mounted: function () { this.$refs.mySplitter.collapse();
|
destroy
|
None
|
None
|
Destroys the jqxSplitter. This method will remove the jqxSplitter from the DOM and will remove all internal event handlers and styles.
<template> <JqxSplitter ref="mySplitter" :width="600" :height="600"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue'; export default { components: { JqxSplitter }, mounted: function () { this.$refs.mySplitter.destroy();
|
disable
|
None
|
None
|
Disables the jqxSplitter.
<template> <JqxSplitter ref="mySplitter" :width="600" :height="600"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue'; export default { components: { JqxSplitter }, mounted: function () { this.$refs.mySplitter.disable();
|
enable
|
None
|
None
|
Enables the jqxSplitter.
<template> <JqxSplitter ref="mySplitter" :width="600" :height="600"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue'; export default { components: { JqxSplitter }, mounted: function () { this.$refs.mySplitter.disabled = true; this.$refs.mySplitter.enable();
|
expand
|
None
|
None
|
Expands a panel.
<template> <JqxSplitter ref="mySplitter" :width="600" :height="600"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue'; export default { components: { JqxSplitter }, mounted: function () { this.$refs.mySplitter.expand();
|
render
|
None
|
None
|
Renders the jqxSplitter.
<template> <JqxSplitter ref="mySplitter" :width="600" :height="600"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue'; export default { components: { JqxSplitter }, mounted: function () { this.$refs.mySplitter.render();
|
refresh
|
None
|
None
|
Refreshes the jqxSplitter. This method will perform a layout and will arrange the split panels.
<template> <JqxSplitter ref="mySplitter" :width="600" :height="600"> <div>Left Side</div> <div>Right Side</div> </JqxSplitter> </template>
<script> import JqxSplitter from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxsplitter.vue'; export default { components: { JqxSplitter }, mounted: function () { this.$refs.mySplitter.refresh();
|