I am using the jQuery EasyUI layout class (http://www.jeasyui.com/documentation/layout.php) for a website. Within a layout-div, regions (north, south, west, east and center) can be placed.
I wanted to hide south panel resize icon.
I am using resize: false, it will not reflect.
My Code is:
if(emailMessage.emailType == "2" && emailMessage.emailssource == "1"){
$('#mail_content').layout('add',{
region: 'south',
height: 250,
title: '<font color="#002256">Hotlist Parsed Information</font>',
border:true,
resize:false,
split: true,
iconCls:'icon-parinfo'
});
}