If you would like to prevent from doing anything on the panel, you can display a mask over it.
If you would like to prevent from expanding a panel, please return false in the 'onBeforeExpand' event.
<div class="easyui-accordion" style="width:500px;height:300px;">
<div title="title1"></div>
<div title="title2" data-options="onBeforeExpand:function(){return false}"></div>
<div title="title3"></div>
</div>