Sets the dockpanel width.
Initialize a jqxDockPanel with the width property specified.
width
$('#jqxDockPanel').jqxDockPanel({width: '200px'});
Sets the dockpanel height.
Initialize a jqxDockPanel with the height property specified.
height
$('#jqxDockPanel').jqxDockPanel({ height:"300px" });
When true, the last child gets the available width and height.
Initialize a jqxDockPanel with the lastchildfill property specified.
lastchildfill
$('#jqxDockPanel').jqxDockPanel({ lastchildfill: false });
Gets whether the dockpanel is disabled.
Initialize a jqxDockPanel with the disabled property specified.
disabled
$('#jqxDockPanel').jqxDockPanel({ disabled: false });
Occurs when the layout is performed.
Bind to the shown event by type: jqxDockPanel.
$('#jqxDockPanel').bind('layout', function () { // Some code here. });
Updates the widget's layout.
Invoke the 'render' method.
$('#dockpanel').jqxDockPanel('render');