Completed
Last Updated: 12 Sep 2015 07:52 by ADMIN
Completed
Last Updated: 01 Jun 2021 12:28 by ADMIN
Completed
Last Updated: 24 Jun 2015 07:50 by ADMIN
Completed
Last Updated: 12 Nov 2015 11:35 by ADMIN
Creating a complex list nesting, sometime includes creating empty parent list item to include entire sub lists. In Chrome, Firefox and Opera pressing backspace in such items causes incorrect behavior and formatting.

This is actually a browser behavior, and it stems from the deletion of the BR tag inside the parent lists. Under IE, this is handled by native DOM operation that removes the entire parent list item and attaching its sub child's to the previous available one.
Completed
Last Updated: 13 Jul 2015 08:04 by Christian
Completed
Last Updated: 28 Jul 2015 11:07 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Currently the lightweight rendering of RibbonBar used in RadEditor with lightweight rendering leads to visual issues.
Completed
Last Updated: 28 Jul 2015 08:17 by ADMIN
When trying to align selected text in a table, not all cells are being aligned correctly under IE and Chrome. In Firefox only one table cell is being applied with the chosen modification and not the selected text.  

Under IE and Chrome, when a table row element is in the selection, the child td elements are not processed by the Align command.

Under FF when the table text is selected, the selected element is only the first TD element. 

The problem under IE and Chrome could be resolved using the following override of the executeOnNode():

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

<script type="text/javascript">
	Telerik.Web.UI.Editor.AlignCommand.prototype.executeOnNode = function (node) {
		var utils = Telerik.Web.UI.Editor.Utils;

		if (utils.isTag(node, "table"))
			return;//prevent alignment of tables since this has no effect in browsers.

		if (utils.isTag(node, "tr")) {
			var nodes = node.childNodes;
			var nodeArr = [];

			for (var i = 0; i < nodes.length; i++) {
				nodeArr.push(nodes[i]);
			}

			while (nodeArr.length) {
				var childNode = nodeArr.shift();
				if (this.isSuitableNode(childNode))
					this.executeOnNode(childNode);
				else
					this.executeInlineNode(childNode);
			}

			return;
		}

		if (utils.isTag(node, "ul") || utils.isTag(node, "ol"))
			return this.executeDomCommand($.makeArray(node.children));

		if (utils.isTag(node, "img")) {
			if (this.nodes.length == 0 && this.canAlignImage()) {
				if (this.options.align == "none")
					this.alignBlock(this.getBlockContainer(node));

				return this.alignImage(node);
			}
			else {
				this.removeImageAlign(node);

				var imageContainer = this.getBlockContainer(node);
				if (imageContainer != node)
					this.executeOnNode(imageContainer);
				else
					return this.executeInlineNode(node);
			}
		}

		this.alignBlock(node);
	};
</script>
Completed
Last Updated: 20 Oct 2015 21:53 by ADMIN
Created by: Jason
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Please add "bootstrap" to drop down list of available skins to base a NEW skin on from style builder. I wish to make some color changes (blue to red) but require all the css and image files.

Thanks.
Completed
Last Updated: 20 Jul 2015 12:04 by Antonio Bakula
Creating a large page with RadEditor control and opening the mentioned dialog will scroll the page to the top. This causes the user to loose visual  contact with the Editor.

The issue is due to the automatic textarea focusing in the clientInit() method of the dialog's logic.

To resolve the issue you should modify the dialog and remove the focusing functionality. To do so follow the next steps:

    1. Follow the Custom Built-in dialogs approach (http://demos.telerik.com/aspnet-ajax/editor/examples/externaldialogspath/defaultcs.aspx) to use an external and later modified Plain Paste Dialog - the MozillaPasteTextDialog.ascx;
    2. Find the clientInit() method trough the client-side logic of the MozillaPasteTextDialog.ascx file;
    3. Remove the this._container.focus() line.

You can also find attached a sample page with the fix placed, so that you can examine it.
 
Completed
Last Updated: 25 Sep 2014 12:57 by Combinations
Completed
Last Updated: 29 Sep 2015 11:01 by ADMIN
For the time being you can use the following workaround:

CSS:
	<style>
		.RadForm_Bootstrap.RadForm.rfdButton form a.rfdSkinnedButton {
			padding: 0px;
			height: 32px;
		}
			.RadForm_Bootstrap.RadForm.rfdButton form a.rfdSkinnedButton input.rfdDecorated {
				height: 32px;
			}
	</style>

ASPX:
		<telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
		<telerik:RadSkinManager ID="RadSkinManager1" runat="server" Skin="Bootstrap" ShowChooser="true"></telerik:RadSkinManager>
		<telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" DecoratedControls="All" />
		<asp:Button ID="Button1" Text="Click" runat="server" />
Completed
Last Updated: 01 Oct 2014 15:21 by ADMIN
Completed
Last Updated: 29 Sep 2015 10:16 by Aldo
ADMIN
Created by: Danail Vasilev
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Completed
Last Updated: 21 Jan 2016 08:59 by ADMIN
Completed
Last Updated: 08 Sep 2015 14:12 by ADMIN
ADMIN
Created by: Plamen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Completed
Last Updated: 02 Sep 2014 15:26 by ADMIN
ADMIN
Created by: Kostadin
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1