Vamsi
Aug 31, 2020, 8:15 AM
Hi Sir,
Im planning to set window should not draggable for some cases and here is example
Ext.WindowMgr.each(function (w) {
if (w.xtype == "window") {
if (w.isVisible() && !w.maximized) {
w.draggable=false;
}
}
});
Server side code is working as expected but there was some issues with client side.
I'm expecting window should not drag in desktop control.
Thank you,
Vamsi.
Im planning to set window should not draggable for some cases and here is example
Ext.WindowMgr.each(function (w) {
if (w.xtype == "window") {
if (w.isVisible() && !w.maximized) {
w.draggable=false;
}
}
});
Server side code is working as expected but there was some issues with client side.
I'm expecting window should not drag in desktop control.
Thank you,
Vamsi.