Hi,
i am opening a rad window wiht a page.
i have to close the window on ESC key press so i have written this code
i am opening a rad window wiht a page.
i have to close the window on ESC key press so i have written this code
function
Escape()
{
var esc=window.event.keyCode;
if(esc==27)
{
var oWindow = window.radWindow || window.frameElement.radWindow;oWindow.close();
}
}
and calling this function in the body onkeypress
<
body onkeypress="Escape();">
It is working fine in IE browsers but not working in Mozilla.
Could you please get the solution please.
Thank you.
Regards,
Sai