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