Gets whether the dockpanel is disabled.
Set the disabled property.
disabled
$('#jqxDockPanel').jqxDockPanel({ disabled: false });
Get the disabled property.
var disabled = $('#jqxDockPanel').jqxDockPanel('disabled');
Sets or gets the dockpanel's height.
Set the height property.
height
$('#jqxDockPanel').jqxDockPanel({ height:"300px" });
Get the height property.
var height = $('#jqxDockPanel').jqxDockPanel('height');
When true, the last child gets the available width and height.
Set the lastchildfill property.
lastchildfill
$('#jqxDockPanel').jqxDockPanel({ lastchildfill: false });
Get the lastchildfill property.
var lastchildfill = $('#jqxDockPanel').jqxDockPanel('lastchildfill');
Sets or gets the dockpanel's width.
Set the width property.
width
$('#jqxDockPanel').jqxDockPanel({width: '200px'});
Get the width property.
var width = $('#jqxDockPanel').jqxDockPanel('width');
Occurs when the layout is performed.
Bind to the layout event by type: jqxDockPanel.
layout
$('#jqxDockPanel').bind('layout', function () { // Some code here. });