or
We are having issues with our Mac Safari users when coping and pasting in the editor. The buttons in the toolbar do nothing and the short cuts do not work as well. At first I thought there was an issue on our end, but even the demos are your site do not work.
Is there a workaround for this issue?
<telerik:RadEditor ExternalDialogsPath="~/UserControls/EditorDialogs/" NewLineBr="False" runat="server" ID="txtRadEditor" CssClass="emailBody RadEditorOverride" SkinID="DefaultSetOfTools" Width="410" Height="435" EnableResize="false" EditModes="All" ToolsFile="~/UserControls/Fippex/EditorTemplate/CustomToolFile.xml"> <ImageManager MaxUploadFileSize="2097152" /> <Content></Content> <CssFiles> <telerik:EditorCssFile Value="~/Style/editor.css" /> </CssFiles> </telerik:RadEditor>| <%@ Page Language="vb" AutoEventWireup="false" enableEventValidation="false" CodeBehind="Default.aspx.vb" Inherits="TestAjax._Default" %> |
| <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| <html xmlns="http://www.w3.org/1999/xhtml" > |
| <head runat="server"> |
| <title>Test</title> |
| </head> |
| <body> |
| <form id="form1" runat="server"> |
| <telerik:RadScriptManager ID="ScriptManager1" runat="server" ScriptMode="Release"> |
| </telerik:RadScriptManager> |
| Use drop down, then put in value in first textbox, the focus will go to 2nd textbox but you cannot enter anything. |
| <br /> |
| If you click 2nd textbox again, type in, and also fill out 3rd textbox. [Go], you'll see that the 2nd textbox value gets lost. |
| <br /> |
| If EnableAjax="false" then problem does not exist. |
| <br /> |
| <telerik:RadComboBox ID="cboFunction" EmptyMessage="Select a function" runat="server" AutoPostBack="true"> |
| <Items> |
| <telerik:RadComboBoxItem Text="" /> |
| <telerik:RadComboBoxItem Text="test1" Value="test1" /> |
| </Items> |
| <ExpandAnimation Type="None" /> |
| <CollapseAnimation Type="None" /> |
| </telerik:RadComboBox> |
| <br /> |
| <asp:PlaceHolder ID="myPlaceHolder" runat="server"></asp:PlaceHolder> |
| <asp:Button ID="btnGo" runat="server" Width="100px" Text="Go" Enabled="true" /> |
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" UpdatePanelsRenderMode="Inline" > |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="cboFunction"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="myPlaceHolder" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| </form> |
| </body> |
| </html> |
| <%@ Control Language="vb" AutoEventWireup="false" CodeBehind="ucTest.ascx.vb" Inherits="TestAjax.ucTest" %> |
| <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
| <telerik:RadTextBox runat="server" ID="txtSubAccountNo" AutoPostBack="true" Width="450px"></telerik:RadTextBox> |
| <br /> |
| <telerik:RadTextBox runat="server" ID="txtSubAccountDesc" ReadOnly="true" BackColor="Gainsboro" TabIndex="-1" Width="450px"></telerik:RadTextBox> |
| <br /> |
| <telerik:RadTextBox runat="server" ID="txt2" Width="450px"></telerik:RadTextBox> |
| <br /> |
| <telerik:RadTextBox runat="server" ID="txt3" Width="450px"></telerik:RadTextBox> |
| <br /> |