EasyUI Forum

General Category => General Discussion => Topic started by: hahamed on August 31, 2016, 11:38:47 PM



Title: Howto set resizable window or panel dynamically?
Post by: hahamed on August 31, 2016, 11:38:47 PM
Hello,
Is where a method (or way) to enable or disable some properties like resizable/draggable on window or panel or dialog easyui?
thanks


Title: Re: Howto set resizable window or panel dynamically?
Post by: jarry on September 01, 2016, 01:16:09 AM
You can set these two properties on window or dialog plugins.
Code:
$(function(){
$('#w').window({
resizable: false,
draggable: false
})
})