| 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: 'left'
 'right'
 'top'
 'bottom'
 Code examples
                            
                                Set the animationDirectionproperty. $('#jqxResponsivePanel').jqxResponsivePanel({ animationDirection: 'top' }); 
 
                                Get the animationDirectionproperty. var opacity = $('#jqxResponsivePanel').jqxResponsivePanel('animationDirection');
 | 
                
                    | 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 animationHideDelayproperty. $('#jqxResponsivePanel').jqxResponsivePanel({ animationHideDelay: 'slow' }); 
 
                                Get the animationHideDelayproperty. var animationHideDelay = $('#jqxResponsivePanel').jqxResponsivePanel('animationHideDelay');
 | 
                
                    | 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 animationShowDelayproperty. $('#jqxResponsivePanel').jqxResponsivePanel({ animationShowDelay: 'slow' }); 
 
                                Get the animationShowDelayproperty. var hoverOpacity = $('#jqxResponsivePanel').jqxResponsivePanel('animationShowDelay');
 | 
                
                    | animationType | String | 'fade' | 
                
                    | 
                            
                                Sets the type of animation using for show/hide the panel.
                            Possible Values: 'fade'
 'slide'
 'none'
 Code examples
                            
                                Set the animationTypeproperty. $('#jqxResponsivePanel').jqxResponsivePanel({ animationType: 'slide' }); 
 
                                Get the animationTypeproperty. var animationType = $('#jqxResponsivePanel').jqxResponsivePanel('animationType');
 | 
                
                    | autoClose | Boolean | true | 
                
                    | 
                            
                                When is set to true, after click outside of the responsive panel it closes.
                             Code examples
                            
                                Set the autoCloseproperty. $('#jqxResponsivePanel').jqxResponsivePanel({ autoClose: false }); 
 
                                Get the autoCloseproperty. var autoClose = $('#jqxResponsivePanel').jqxResponsivePanel('autoClose');
 | 
                
                    | collapseBreakpoint | Number | 1000 | 
                
                    | 
                            
                                If is set, changes the browser's width, where the panel shows/hides.
                             Code examples
                            
                                Set the collapseBreakpointproperty. $('#jqxResponsivePanel').jqxResponsivePanel({ collapseBreakpoint: 1000 });
 
                                Get the collapseBreakpointproperty. var collapseBreakpoint = $('#jqxResponsivePanel').jqxResponsivePanel('collapseBreakpoint');
 | 
                
                    | collapseWidth | Number | null | 
                
                    | 
                            
                                Sets or gets the width of the panel when it is collapsed.
                             Code examples
                            
                                Set the collapseWidthproperty. $('#jqxResponsivePanel').jqxResponsivePanel({ collapseWidth: 1000 });
 
                                Get the collapseWidthproperty. var collapseWidth = $('#jqxResponsivePanel').jqxResponsivePanel('collapseWidth');
 | 
                
                    | height | Number/String | null | 
                
                    | 
                            
                                Sets or gets the responsive panel's height.
                             Code examples
                            
                                Set the heightproperty. $("#jqxResponsivePanel").jqxResponsivePanel({ height: 400 });
 
                                Get the heightproperty. var height = $('#jqxResponsivePanel').jqxResponsivePanel('height');
 | 
                
                    | initContent | function | null | 
                
                    | 
                            
                                Initializes the responsive panel content.
                             Code examples
                            
                                Set the initContentproperty. $('#jqxResponsivePanel').jqxResponsivePanel({ initContent: function () {
    $('#jqxButton').jqxButton({ width: 80 });
}
});
 
                                Get the initContentproperty. var initContent = $('#jqxResponsivePanel').jqxResponsivePanel('initContent');
 | 
                
                    | 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:
                                                                                 | 
                
                    | toggleButton | String/Object | null | 
                
                    | 
                            
                                Sets or gets the element, where toggleButton is rendered.
                             Code examples
                            
                                Set the toggleButtonproperty. $('#jqxResponsivePanel').jqxResponsivePanel({ toggleButton: $('#toggleResponsivePanel') }); 
 
                                Get the toggleButtonproperty. var toggleButton = $('#jqxResponsivePanel').jqxResponsivePanel('toggleButton');
 | 
                
                    | toggleButtonSize | Number/String | 30 | 
                
                    | 
                            
                                Sets the size of toggleButton.
                             Code examples
                            
                                Set the toggleButtonSizeproperty. $('#jqxResponsivePanel').jqxResponsivePanel({ toggleButtonSize: 40 }); 
 
                                Get the toggleButtonSizeproperty. var toggleButtonSize = $('#jqxResponsivePanel').jqxResponsivePanel('toggleButtonSize');
 | 
                
                    | width | Number/String | null | 
                
                    | 
                            
                                Sets or gets the responsive panel's width.
                             Code examples
                            
                                Set the widthproperty. $("#jqxResponsivePanel").jqxResponsivePanel({ width: 200 });
 
                                Get the widthproperty. var width = $('#jqxResponsivePanel').jqxResponsivePanel('width');
 | 
                
                    |  | 
                
                    | close | Event |  | 
                
                    | 
                            
                                This event is triggered when the responsive panel finishes it's closing.
                             Code examples
                            
                                Bind to the closeevent by type: jqxResponsivePanel. $('#jqxResponsivePanel').on('close', function () { // Some code here. }); 
 | 
                
                    | collapse | Event |  | 
                
                    | 
                            
                                This event is triggered when the the browser's width becomes smaller than the value of collapseBreakpoint.
                             Code examples
                            
                                Bind to the collapseevent by type: jqxResponsivePanel. $('#jqxResponsivePanel').on('collapse', function () { // Some code here. }); 
 | 
                
                    | expand | Event |  | 
                
                    | 
                            
                                This event is triggered when the the browser's width becomes greather than the value of collapseBreakpoint.
                             Code examples
                            
                                Bind to the expandevent by type: jqxResponsivePanel. $('#jqxResponsivePanel').on('expand', function () { // Some code here. }); 
 | 
                
                    | open | Event |  | 
                
                    | 
                            
                                This event is triggered when the responsive panel finishes it's opening.
                             Code examples
                            
                                Bind to the openevent by type: jqxResponsivePanel. $('#jqxResponsivePanel').on('open', function () { // Some code here. }); 
 | 
                
                    |  | 
                
                    | close | Method |  | 
                
                    | 
                            
                                Closes the responsive panel.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                            
                                Invoke the closemethod. $('#jqxResponsivePanel').jqxResponsivePanel('close'); 
 | 
                
                    | destroy | Method |  | 
                
                    | 
                            
                                Destroy the widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                            
                                Invoke the destroymethod. $('#jqxResponsivePanel').jqxResponsivePanel('destroy'); 
 | 
                
                    | isCollapsed | Method |  | 
                
                    | 
                            
                                Returns true or false when the panel is collapsed or expanded.
                             
                                
                                    
                                        Return Value 
                                Boolean
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the isCollapsedmethod. $('#jqxResponsivePanel').jqxResponsivePanel('isCollapsed'); 
 | 
                
                    | isOpened | Method |  | 
                
                    | 
                            
                                Returns true or false when the panel is opened or closed.
                             
                                
                                    
                                        Return Value 
                                Boolean
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the isOpenedmethod. $('#jqxResponsivePanel').jqxResponsivePanel('isOpened'); 
 | 
                
                    | open | Method |  | 
                
                    | 
                            
                                Open the responsive panel.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                            
                                Invoke the openmethod. $('#jqxResponsivePanel').jqxResponsivePanel('open'); 
 | 
                
                    | refresh | Method |  | 
                
                    | 
                            
                                Refreshes the widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                            
                                Invoke the refreshmethod. $('#jqxResponsivePanel').jqxResponsivePanel('refresh'); 
 | 
                
                    | render | Method |  | 
                
                    | 
                            
                                Render the widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                            
                                Invoke the rendermethod. $('#jqxResponsivePanel').jqxResponsivePanel('render'); 
 |