Completed
Last Updated: 11 Nov 2014 12:37 by ADMIN
Completed
Last Updated: 07 Mar 2016 09:59 by ADMIN
ADMIN
Created by: Kostadin
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Completed
Last Updated: 25 Nov 2014 13:35 by ADMIN
Completed
Last Updated: 08 Apr 2015 11:25 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 03 Nov 2015 15:40 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
In IE the command works fine.

In FF the command is always disabled.

In Chrome is always enabled, but using it do not affect the content.

If you need this tool to be always disabled under Chrome, you can use the following approach to disable the tool:

<telerik:RadEditor runat="server" ID="RadEditor1" OnClientSelectionChange="OnClientSelectionChange">
</telerik:RadEditor>

<script type="text/javascript">
	function OnClientSelectionChange(sender, args) {
		if ($telerik.isChrome) {
			setTimeout(function () {
				sender.get_toolAdapter().getToolByName("AbsolutePosition").set_enabled(false);
			},0)
		}
	}
</script>


Completed
Last Updated: 20 Sep 2016 06:49 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
The encountered issue stems due to inheritance of CSS rules that select globally table elements. 

For the time being you can use the following CSS reset to improve the layout of the Editor's table elements:

.reLayoutWrapper, .reWrapper_corner, .reWrapper_center,
.reLeftVerticalSide, .reRightVerticalSide,
.reTlbVertical, .reToolCell, .reContentCell,
.reToolZone, .reBottomTable, .reEditorModesCell,
.reBottomZone, .reResizeCell {
	border: 0 none !important;
	padding: 0 !important;
}

.Telerik.reWrapper, .Telerik.RadEditor .reContentCell,
.Telerik.reColorPicker, .Telerik.reInsertTable,
.Telerik.reCustomLinks a:hover {
	border: 1px solid #828282 !important;
}

.reLeftVerticalSide, .reRightVerticalSide {
	padding: 1px !important;
}

Note that these CSS rules will affect RadEditor controls outside the RadGrid. If you need to modify only RadEditors inside RadGrid, use CssClass property and change the CSS selectors according the set class name.

Also, upon the used color you may need to change the border-color according to the Skin design.
Completed
Last Updated: 01 Dec 2014 11:14 by ADMIN
Completed
Last Updated: 16 Jul 2015 08:30 by Jerry
Completed
Last Updated: 09 Dec 2015 15:11 by ADMIN
Won't Fix
Last Updated: 14 Jun 2016 23:14 by Bryan
Declined
Last Updated: 02 Mar 2022 13:26 by ADMIN
Declined
Last Updated: 16 Mar 2015 14:23 by Elena
Completed
Last Updated: 30 Mar 2015 14:36 by ADMIN
ADMIN
Created by: Ianko
Comments: 8
Category: UI for ASP.NET AJAX
Type: Bug Report
0
With the support of insert list command in Track Changes functionality, users can insert lists. Although with enabled tracking users are not able to delete the list items, but only the text inside.

Steps to reproduce:
http://demos.telerik.com/aspnet-ajax/editor/examples/trackchanges/defaultcs.aspx

1. Insert a list with enabled TrackChanges
2. Start deleting list items

Expected: The whole list item is removed
Actual: Only the text inside the list item is deleted
Completed
Last Updated: 16 Jul 2015 07:57 by ADMIN
Won't Fix
Last Updated: 10 Nov 2015 11:08 by ADMIN
ADMIN
Created by: Ianko
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Under IE10 and 11 the CrossFade animation causes a random flickering. 
Completed
Last Updated: 06 Aug 2015 13:39 by ADMIN
Creating a lists with sub list, navigating to a parent list item and trying to add an sibling list item will cause the list to break. 
Completed
Last Updated: 12 Oct 2015 11:44 by Kris
Completed
Last Updated: 27 Apr 2015 07:01 by ADMIN
On iOS 8 Safari the propagation of the "touch" event is not prevented, thus the element beneath the touched DropDownList item get touched as well.
Completed
Last Updated: 16 Jul 2015 07:57 by ADMIN
ADMIN
Created by: Pavlina
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0