I've seen a couple of threads regarding problems that Safari has when rendering a radTab and radMultiPages when the controls are not initially visible on a page, but rather are added dynamically on an AJAX postback. In IE and FF everything renders and functions correctly, however in Safari, the browser must be completely refreshed before the tab operates correctly.
From the previous posts it looks like I can 'pre-cache' the scripts and styles needed using the ASPScriptManager. I've already tried a couple of combinations, but nothing seems to help out... perhaps I am missing a reference or have paths not setup correctly. See snippet below.
Thanks.
From the previous posts it looks like I can 'pre-cache' the scripts and styles needed using the ASPScriptManager. I've already tried a couple of combinations, but nothing seems to help out... perhaps I am missing a reference or have paths not setup correctly. See snippet below.
Thanks.
<asp:ScriptManager ID="ScriptManager1" runat="server"> |
<Scripts> |
<asp:ScriptReference Name="Telerik.Web.UI.Common.Core.js" Assembly="Telerik.Web.UI" /> |
<asp:ScriptReference Name="Telerik.Web.UI.Upload.RadUpload.js" Assembly="Telerik.Web.UI"/> |
<asp:ScriptReference Name="Telerik.Web.UI.TabStrip.MultiPage.RadMultiPageScripts.js" Assembly="Telerik.Web.UI"/> |
<asp:ScriptReference Name="Telerik.Web.UI.Common.Scrolling.ScrollingScripts.js" Assembly="Telerik.Web.UI" /> |
<asp:ScriptReference Name="Telerik.Web.UI.Common.Navigation.NavigationScripts.js" Assembly="Telerik.Web.UI" /> |
<asp:ScriptReference Name="Telerik.Web.UI.TabStrip.RadTabStripScripts.js" Assembly="Telerik.Web.UI" /> |
</Scripts> |
</asp:ScriptManager> |