The 'onCollapse' and 'onResize' events are available for the panels. The code below shows how to catch the events of the region panel.
<body class="easyui-layout">
<div data-options="region:'west',split:true,title:'West',width:180,
onCollapse:function(){
// ...
},
onResize:function(){
// ...
}
">west content</div>
<div data-options="region:'center',title:'Center'"></div>
</body>