Hi,
I have used rad window. It was working fine wih IE8 and firefox. Recently i upgraded with telerik latest version. since then, the pop up is not getting opened with the width and height which i set.
I have given the code of radwindow and javascript f unction call to open rad window below
I have used rad window. It was working fine wih IE8 and firefox. Recently i upgraded with telerik latest version. since then, the pop up is not getting opened with the width and height which i set.
I have given the code of radwindow and javascript f unction call to open rad window below
<telerik:RadWindowManager ID="RadWindowManager2" runat="server"> <Windows> <telerik:RadWindow ID="radWindowAddRecurrencePopup" OnClientClose="CallBackFunctionRecurrence" Behavior="Close" VisibleTitlebar="false" Modal="true" Width="750px" runat ="server" Height="650px" VisibleStatusbar="false"> </telerik:RadWindow> </Windows> </telerik:RadWindowManager> function OpenRadWindowViewEditRecurrencePopup(isConflict, startDate, endDate, startTime, EndTime, SessionID, recordid, LOCATIONname, roomNo) { var Url = "./ViewEditSchedulePopUp.aspx?ISCONFLICT=" + isConflict + "&STARTDATE=" + startDate + "&ENDDATE=" + endDate + "&STARTTIME=" + startTime + "&ENDTIME=" + EndTime + "&SESSIONID=" + SessionID + "&CODE=" + recordid + "&LOCATIONID=" + LOCATIONname + "&roomNo=" + roomNo; var oWnd = radopen(Url, "radWindowViewEditRecurremcePopup"); //oWnd.SetUrl(oWnd.GetUrl()); return false; }this problem is only with IE. it works in other browsers..
Is their any fixes for this issue?
Thx
Esther