EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: pacific202 on October 12, 2011, 09:38:54 AM



Title: Disable resizing on Layout?
Post by: pacific202 on October 12, 2011, 09:38:54 AM
How can I disable the resizing feature on my "west" panel in the layout object using the html tag and JavaScript?



Title: Re: Disable resizing on Layout?
Post by: stworthy on October 12, 2011, 05:49:24 PM
Try below code to disable resizable feature for your west panel:

Code:
var p = $('body').layout('panel','west');  // get the west panel
p.panel('panel').resizable({disabled:true});