I have a raddatepicker on a page and if I use a radwindowmanager the date picker popup will not display when I include clientside events in the radwindowsmanager - only relates to FIREFOX newest download.. Works perfectly in Chrome and IE (newest versions)
If I remove the client side events from the window manager everything works pefectly....
This behavior only occurs in the latest version of Firefox...
Any ideas on how to solve this issue?
So if I don't use the radwindow manager events and instead use a bit of inline javascript on the button in the modal window that does a redirect everything works -> What is the deal here..grrrr I WOULD RATHER use the radwindowmanager clientside API...
My raddatepicker code
My javascript
If I remove the client side events from the window manager everything works pefectly....
OnClientClose="OnClientclose"This behavior only occurs in the latest version of Firefox...
Any ideas on how to solve this issue?
So if I don't use the radwindow manager events and instead use a bit of inline javascript on the button in the modal window that does a redirect everything works -> What is the deal here..grrrr I WOULD RATHER use the radwindowmanager clientside API...
<asp:ImageButton ID="imbBTN1" runat="server" AlternateText="Close" OnClientClick="javascript:top.document.location.href='./closing.aspx';return false;" ImageUrl="~/Images/Approve.gif" />My raddatepicker code
<telerik:RadDatePicker ID="radDatePickerStartDate1" runat="server" Culture="en-US" EnableTyping="False" Enabled="False" ZIndex="1000" Skin="Outlook"> <Calendar ID="Calendar1" runat="server" UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False" ViewSelectorText="x" Skin="Outlook"> </Calendar> <DateInput ID="DateInput1" runat="server" DisplayDateFormat="M/d/yyyy" DateFormat="M/d/yyyy" ReadOnly="True"> </DateInput> <DatePopupButton ImageUrl="" HoverImageUrl=""></DatePopupButton> </telerik:RadDatePicker><telerik:RadWindowManager ID="RadWindowManager1" runat="server" Modal="True" Title="Archive Progress..." ShowContentDuringLoad="False" ReloadOnShow="True" VisibleStatusbar="False" EnableViewState="False" OnClientClose="OnClientclose"> <Windows> <telerik:RadWindow ID="RadWindow1" runat="server" Height="600px" Modal="True" VisibleOnPageLoad="false" ReloadOnShow="True" ShowContentDuringLoad="False" Style="display: none;" Title="Archive Progress..." VisibleStatusbar="False" Width="800px" KeepInScreenBounds="True" EnableViewState="false" Behavior="Move" Behaviors="Move" Skin="Outlook"> </telerik:RadWindow> </Windows> </telerik:RadWindowManager>My javascript
<script type="text/jscript" language="javascript"> /********************************************************** Window Events **********************************************************/ function OnClientclose(sender, eventArgs) { window.location = "./closing.aspx"; } </script>