make a window view not clickable

view:“window”,
id : 2,
move: true,
head:{
view:“toolbar”,
cols:[
{view:“label”, label: “my window” },
{ view:“button”, label: “Close”, width: 100, align: “right”, hotkey:“esc”, click:function(){
$$(id).close();
}
}
]
},
body: {
}

but i want to make the body unclickable if possible. is it possible ?

Do you mean document.body or body of window?

User { view:"window", modal:true in the first case and $$("2").getBody().disable() in the second case.