Guys,
I am facing a performance issue when closing a radwindow Lightweight rendering in only IE browser (IE v11).
I tried hiding the radwindow by using onClientBeforeClose client event to improve user experience BUT I got no lucky. The problem is still the same.
Is there any way which can solve it or improve UX when closing the radwindow?
function OnClientBeforeCloseHandler(sender, args) { if (sender && sender.get_popupElement() && sender.get_popupElement().style && $telerik.isIE) { sender.get_popupElement().style.display = "none"; }}