The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxLayout widget requires the following files:
$("#jqxLayout").jqxLayout("destroy");
To set a property(option), you need to pass the property name and value(s) in the
jqxLayout's constructor.
$("#jqxLayout").jqxLayout({ rtl: true });
To get a property(option), you need to pass the property name to the jqxLayout's
constructor.
var width = $("#jqxLayout").jqxLayout("width");
To bind to an event of a UI widget, you can use basic jQuery syntax. The example
code below demonstrates how to bind to the "resize" event of jqxLayout.
// bind to resize event.
$('#jqxLayout').on('resize', function () {
alert('A panel group has been resized.');
});