Ok, I keep running into this problem during various upgrade to different versions. If I have a window that is maximized and modal set to true when it returns to the main page the scrollbars are gone.
Here is my code:
Here is my code:
function ShowInsertForm(purchaseOrderID) |
{ |
window.scrollTo(0,0); |
var url; |
url = "<%=Constants.SitePages.TruckHaulInfo%>?<%=Constants.Request.PurchaseOrderID%>=" + purchaseOrderID; |
var oWnd = radopen (url, null); |
oWnd.maximize(); |
oWnd.set_behaviors(Telerik.Web.UI.WindowBehaviors.Close); |
oWnd.set_modal(true); |
oWnd.show(); |
} |
I have even tried to reshow the scrollbars using the old trusty:
document.documentElement.scroll = "yes";
document.documentElement.style.overflow = "visible";
or
document.body.scroll = "yes";
document.body.style.overflow = "visible";
but this does not help. How do I solve this issue once and forever? When the radwindow goes away I want my scrollbars to be there if they were they before the radwindow was opened.
Help.......
Jason