The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxPanel widget requires the following files:
$('#jqxpanel').jqxPanel('append', element);To set a property(option), you need to pass the property name and value(s) in the jqxPanel's constructor.
$("#jqxPanel").jqxPanel({ disabled: true });To get a property(option), you need to pass the property name to the jqxPanel's constructor.
var disabled = $("#jqxPanel").jqxPanel('disabled');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 panel's layout is updated. The example code below demonstrates how to bind to the ‘layout’ event of jqxPanel.
$("#jqxpanel").on('layout', function () { });