Name | Type | Default | ||||||
---|---|---|---|---|---|---|---|---|
animationDirection | String | 'left' | ||||||
Sets or gets the direction of the animation. You can use this property when "animationType" is set to 'slide'. Possible Values:
Code examples
Set the
Get the
|
||||||||
animationHideDelay | Boolean | 'fast' | ||||||
Sets or gets the speed of the animation when the panel hides. The delay represents the time of starting until the final hiding. Code examples
Set the
Get the
Try it: animationHideDelay is set to 800
|
||||||||
animationShowDelay | Number/String | 'fast' | ||||||
Sets or gets the speed of the animation when the panel shows. The delay represents the time of it's starting until the final positioning. Code examples
Set the
Get the
Try it: animationShowDelay is set to 800
|
||||||||
animationType | String | 'fade' | ||||||
Sets the type of animation using for show/hide the panel. Possible Values:
Code examples
Set the
Get the
Try it: animationType is set to 'slide'
|
||||||||
autoClose | Boolean | true | ||||||
When is set to true, after click outside of the responsive panel it closes. Code examples
Set the
Get the
Try it: autoClose is set to false
|
||||||||
collapseBreakpoint | Number | 1000 | ||||||
If is set, changes the browser's width, where the panel shows/hides. Code examples
Set the
Get the
Try it: collapseBreakpoint is set to 600
|
||||||||
collapseWidth | Number | null | ||||||
Sets or gets the width of the panel when it is collapsed. Code examples
Set the
Get the
Try it: collapseWidth is set to 600
|
||||||||
height | Number/String | null | ||||||
Sets or gets the responsive panel's height. Code examples
Set the
Get the
Try it: height is set to 400
|
||||||||
initContent | function | null | ||||||
Initializes the responsive panel content. Code examples
Set the
Get the
|
||||||||
theme | String | '' | ||||||
Sets the widget's theme. jQWidgets uses a pair of css files - jqx.base.css and jqx.[theme name].css. The base stylesheet creates the styles related to the widget's layout like margin, padding, border-width, position. The second css file applies the widget's colors and backgrounds. The jqx.base.css should be included before the second CSS file. In order to set a theme, you need to do the following:
Try it: theme is set to 'energyblue'
|
||||||||
toggleButton | String/Object | null | ||||||
Sets or gets the element, where toggleButton is rendered. Code examples
Set the
Get the
|
||||||||
toggleButtonSize | Number/String | 30 | ||||||
Sets the size of toggleButton. Code examples
Set the
Get the
Try it: toggleButtonSize is set to 40
|
||||||||
width | Number/String | null | ||||||
Sets or gets the responsive panel's width. Code examples
Set the
Get the
Try it: width is set to 300
|
||||||||
Events |
||||||||
close | Event | |||||||
This event is triggered when the responsive panel finishes it's closing. Code examples
Bind to the
|
||||||||
collapse | Event | |||||||
This event is triggered when the the browser's width becomes smaller than the value of collapseBreakpoint. Code examples
Bind to the
|
||||||||
expand | Event | |||||||
This event is triggered when the the browser's width becomes greather than the value of collapseBreakpoint. Code examples
Bind to the
|
||||||||
open | Event | |||||||
This event is triggered when the responsive panel finishes it's opening. Code examples
Bind to the
|
||||||||
Methods |
||||||||
close | Method | |||||||
Closes the responsive panel.
None Code examples
Invoke the
Try it: closes the widget
|
||||||||
destroy | Method | |||||||
Destroy the widget.
None Code examples
Invoke the
Try it: destroy the widget
|
||||||||
isCollapsed | Method | |||||||
Returns true or false when the panel is collapsed or expanded.
Boolean Code examples
Invoke the
Try it: checks if the panel is collapsed
|
||||||||
isOpened | Method | |||||||
Returns true or false when the panel is opened or closed.
Boolean Code examples
Invoke the
Try it: checks if the panel is opened
|
||||||||
open | Method | |||||||
Open the responsive panel.
None Code examples
Invoke the
Try it: opens the widget
|
||||||||
refresh | Method | |||||||
Refreshes the widget.
None Code examples
Invoke the
Try it: refresh the widget
|
||||||||
render | Method | |||||||
Render the widget.
None Code examples
Invoke the
Try it: render the widget
|