The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxResponsivePanel widget requires the following files:
To set a property (option), you need to pass the property name and value(s) in the jqxResponsivePanel's constructor.$('#jqxResponsivePanel').jqxResponsivePanel('open');
To get a property (option), you need to pass the property name to the jqxResponsivePanel's constructor.$('#jqxResponsivePanel').jqxResponsivePanel({ collapseBreakpoint: 1000 });
To bind to an event of a UI widget, you can use basic jQuery syntax. Let’s suppose that you want to know when the responsive panel has been collapsed.var collapseBreakpoint = $('#jqxResponsivePanel').jqxResponsivePanel('collapseBreakpoint');
// bind to 'collapse' event.$('#jqxResponsivePanel').on('collapse', function (event) {});