Completed
Last Updated: 15 Oct 2015 07:47 by ADMIN
ADMIN
Created by: Boyan Dimitrov
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Completed
Last Updated: 14 Oct 2015 13:59 by ADMIN
Completed
Last Updated: 13 Oct 2015 08:13 by ADMIN
Completed
Last Updated: 12 Oct 2015 11:44 by Kris
Completed
Last Updated: 09 Oct 2015 06:13 by ADMIN
According to current implementation of paste functionality for IE, the editor gets the pasted content by executing the browser's paste command - 
editor.get_document().execCommand("Paste", null); 
This does not paste anything when browser's security setting "Allow Programmatic clipboard access" is disabled.
Completed
Last Updated: 08 Oct 2015 14:09 by Dietmar
The selected image in SharePoint RadEditor's Image Manager dialog is not displayed when edited in the Image Editor in IE when the property ImageManagerViewMode of the editor is set to Grid.
Completed
Last Updated: 08 Oct 2015 12:41 by ADMIN
ADMIN
Created by: Joana
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0
In the meantime, use the following workaround:

<script type="text/javascript">
                var designMode = Telerik.Web.UI.EditModes.Design;
                var editorPrototype = Telerik.Web.UI.RadEditor.prototype;
                var keypress = editorPrototype._keyPressHandler;
                editorPrototype._keyPressHandler = function (ev) {
                    if (this.get_mode() == designMode) {
                        keypress.call(this, ev);
                    }
                }
                var keyDownOverride = editorPrototype._keyDownHandlerEnableTrackChangesOverride;
                editorPrototype._keyDownHandlerEnableTrackChangesOverride = function (ev) {
                    if (this.get_mode() == designMode) {
                        keyDownOverride.call(this, ev);
                    }
                }
                var keydown = editorPrototype._keyDownHandler;
                editorPrototype._keyDownHandler = function (ev) {
                    if (this.get_mode() == designMode) {
                        keydown.call(this, ev);
                    }
                }
            </script>
Completed
Last Updated: 07 Oct 2015 13:27 by ADMIN
ADMIN
Created by: Danail Vasilev
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
For the time being you can manually set the localization string for the "Add Custom Color" and "Current Color" buttons: 
		<telerik:RadEditor ID="RadEditor1" runat="server" RenderMode="Mobile" Language="de-DE" LocalizationPath="~/App_GlobalResources"></telerik:RadEditor>
		<script>
			var initialize = Telerik.Web.UI.Editor.MobileColorPicker.prototype.initialize;
			var addCustomColorTextLocalized = "Add Custom Color Localized";
			var currentColorTextLocalized = "Current Color Localized";

			Telerik.Web.UI.Editor.MobileColorPicker.prototype.initialize = function () {
				var colorPicker = this;
				initialize.call(colorPicker);
				
				colorPicker._addCustomColorText = addCustomColorTextLocalized;
				colorPicker._currentColorText = currentColorTextLocalized;
			}
		</script>
Completed
Last Updated: 06 Oct 2015 14:16 by ADMIN
This issue happens only under IE11 with IE9 compatibility mode. Using real IE9 browser the area is rendered correctly.

You should be aware of this issue when testing cross browser functionality of the RadEditor. 
Completed
Last Updated: 06 Oct 2015 14:01 by ADMIN
When a table is inserted above a list element and modified via the Table Wizard dialog, it is getting appended as a list item. 
Completed
Last Updated: 06 Oct 2015 13:38 by ADMIN
ADMIN
Created by: Rumen
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Won't Fix
Last Updated: 05 Oct 2015 14:38 by ADMIN
Completed
Last Updated: 05 Oct 2015 11:08 by Eli
Created by: Eli
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Since upgrading to Q1 2013, any export to csv file type from RadGrid displays an empty space when a column is empty.  It should just be blank.
Declined
Last Updated: 02 Oct 2015 20:27 by ADMIN
Completed
Last Updated: 02 Oct 2015 15:46 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 02 Oct 2015 15:32 by ADMIN
Completed
Last Updated: 02 Oct 2015 15:29 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 02 Oct 2015 15:21 by ADMIN
Declined
Last Updated: 02 Oct 2015 15:10 by ADMIN
The links in Preview mode should not be opened at all or at least opened automatically in a new window, so that user could preserve its content.

Possible resolution is to invoke the setTargetsForPreview method on the OnClientLoad event of the editor:

<telerik:RadEditor runat="server" ID="RadEditor1"
	 EditModes="Preview" OnClientLoad="OnClientLoad">
	<Content>
		<a href="http://www.telerik.com">Link</a>
	</Content>
</telerik:RadEditor>

<script type="text/javascript">
	function OnClientLoad(editor, args) {
		Telerik.Web.UI.Editor.Utils.setTargetsForPreview(editor);
	}
</script>