Name | Type | Default |
autoUpdate
|
Boolean
|
false
|
Automatically updates the panel, if its children size is changed.
<template> <JqxPanel ref="myPanel" :width="250" :height="250" :autoUpdate="true"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue';
|
disabled
|
Boolean
|
false
|
Sets or gets whether the panel is disabled.
<template> <JqxPanel ref="myPanel" :width="250" :height="250" :disabled="true"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue';
|
height
|
Number | String
|
null
|
Sets or gets the panel's height.
<template> <JqxPanel ref="myPanel" :width="250" :height="250"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue';
|
rtl
|
Boolean
|
false
|
Sets or gets a value indicating whether widget's elements are aligned to support locales using right-to-left fonts.
<template> <JqxPanel ref="myPanel" :width="250" :height="250" :rtl="true"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue';
|
sizeMode
|
String
|
'fixed'
|
Sets or gets the sizing mode. In the 'fixed' mode, the panel displays scrollbars, if its content requires it. In the wrap mode, the scrollbars are not displayed and the panel automatically changes its size.
Possible Values:
'fixed'
'wrap'
<template> <JqxPanel ref="myPanel" :width="250" :height="250" :sizeMode="'wrap'"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue';
|
scrollBarSize
|
Number
|
17
|
Sets or gets the scrollbar's size.
<template> <JqxPanel ref="myPanel" :width="250" :height="250" :scrollBarSize="20"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue';
|
theme
|
String
|
''
|
Sets the widget's theme.
<template> <JqxPanel ref="myPanel" :width="250" :height="250" :theme="'material'"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue';
|
width
|
Number | String
|
null
|
Sets or gets the panel's width.
<template> <JqxPanel ref="myPanel" :width="250" :height="250"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue';
|
|
|
Name | Arguments | Return Type |
append
|
HTMLElement
|
None
|
Appends an element to the panel's content.
<template> <JqxPanel ref="myPanel" :width="250" :height="250"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template><script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue'; export default { components: { JqxPanel }, mounted: function () { let div = document.createElement( 'div'); div.innerHTML = 'Custom Content'; this.$refs.myPanel.append(div);
|
clearcontent
|
None
|
None
|
Clears the panel's content.
<template> <JqxPanel ref="myPanel" :width="250" :height="250"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue'; export default { components: { JqxPanel }, mounted: function () { this.$refs.myPanel.clearcontent();
|
destroy
|
None
|
None
|
Destroys the widget.
<template> <JqxPanel ref="myPanel" :width="250" :height="250"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue'; export default { components: { JqxPanel }, mounted: function () { this.$refs.myPanel.destroy();
|
focus
|
None
|
None
|
Focuses the widget.
<template> <JqxPanel ref="myPanel" :width="250" :height="250"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue'; export default { components: { JqxPanel }, mounted: function () { this.$refs.myPanel.focus();
|
getScrollHeight
|
None
|
Number
|
Get the scrollable height. Returns a number.
<template> <JqxPanel ref="myPanel" :width="250" :height="250"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue'; export default { components: { JqxPanel }, mounted: function () { const value = this.$refs.myPanel.getScrollHeight();
|
getVScrollPosition
|
None
|
Number
|
Get the vertical scrollbar's position. Returns a number.
<template> <JqxPanel ref="myPanel" :width="250" :height="250"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue'; export default { components: { JqxPanel }, mounted: function () { const value = this.$refs.myPanel.getVScrollPosition();
|
getScrollWidth
|
None
|
Number
|
Get the scrollable width. Returns a number.
<template> <JqxPanel ref="myPanel" :width="250" :height="250"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue'; export default { components: { JqxPanel }, mounted: function () { const value = this.$refs.myPanel.getScrollWidth();
|
getHScrollPosition
|
None
|
Number
|
Get the horizontal scrollbar's position. Returns a number.
<template> <JqxPanel ref="myPanel" :width="250" :height="250"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue'; export default { components: { JqxPanel }, mounted: function () { const value = this.$refs.myPanel.getHScrollPosition();
|
prepend
|
HTMLElement
|
None
|
Prepends an element to the panel's content.
<template> <JqxPanel ref="myPanel" :width="250" :height="250"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template><script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue'; export default { components: { JqxPanel }, mounted: function () { let div = document.createElement( 'div'); div.innerHTML = 'Custom Content'; this.$refs.myPanel.prepend(div);
|
remove
|
HTMLElement
|
None
|
Remove an element from the panel's content.
<template> <JqxPanel ref="myPanel" :width="250" :height="250"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue'; export default { components: { JqxPanel }, mounted: function () { this.$refs.myPanel.remove(document.querySelector( 'li'));
|
scrollTo
|
left, top
|
None
|
Scroll to specific position.
<template> <JqxPanel ref="myPanel" :width="250" :height="250"> <div style='margin: 10px;'> <h3>Early History of the Internet</h3> </div> <div> <ul> <li>1961 First packet-switching papers</li> <li>1966 Merit Network founded </li> <li>1966 ARPANET planning starts </li> <li>1969 ARPANET carries its first packets </li> <li>1970 Mark I network at NPL (UK) </li> <li>1970 Network Information Center (NIC) </li> <li>1971 Merit Network's packet-switched network operational </li> <li>1971 Tymnet packet-switched network </li> <li>1972 Internet Assigned Numbers Authority (IANA) established </li> </ul> </div> </JqxPanel></template> <script> import JqxPanel from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue'; export default { components: { JqxPanel }, mounted: function () { this.$refs.myPanel.scrollTo(0,20);
|