Declined
Last Updated: 21 Jun 2022 15:06 by ADMIN
Completed
Last Updated: 07 Jun 2016 11:10 by ADMIN
Due to accessibility matters this shortcut currently focuses the last tool in the toolbar.

It would be great if developers could be available to modify the default behavior and attach a special command that behaves more like the MS Word's Shift+Tab command. The following behavior is the one experienced in desktop rich text editors:

    1. In text - The command adds a simple TAB (e.g. four white spaces).
    2. In list - The selected list item is being outdented.
    3. In table - The cursor moves to the previous cell.

A customization that provides such behavior can be easily implemented using a custom command and the addShortCut method:

<telerik:RadEditor ID="RadEditor1" runat="server" OnClientLoad="OnClientLoad">
    <Content>
        Text<br/>
        <ol>
            <li>Item 1</li>
            <li>Item 2</li>
            <li>Item 3</li>
            <li>Item 4</li>
            <li>Item 5</li>
        </ol>
        <br/>
        <table>
            <tr>
                <td>Cell</td>
                <td>Cell</td>
            </tr>
            <tr>
                <td>Cell</td>
                <td>Cell</td>
            </tr>
        </table>    
    </Content>
</telerik:RadEditor>

<script type="text/javascript">
    function OnClientLoad(editor, args) {
        var shortcutManager = editor.get_shortCutManager();

        if (shortcutManager.findShortCutByName("InsertTabMozilla")) {
            shortcutManager.removeShortCut("InsertTabMozilla");
            editor.addShortCut("InsertTab", "TAB");
        }

        editor.addShortCut("ShiftTabCommand", "Shift+TAB");
        editor.addShortCut("Underline", "Cmd+U");
    }

    Telerik.Web.UI.Editor.CommandList["ShiftTabCommand"] = function (commandName, editor, args) {
        var selectedElement = editor.getSelectedElement();
        var nodeName = selectedElement.nodeName;
        if (nodeName === "LI") {
            editor.fire("Outdent");
        } else if (nodeName === "TD") {
            Telerik.Web.UI.Editor.Utils.MoveToPreviousCell(selectedElement, editor);
        } else {
            editor.fire("InsertTab");
        }
    };
</script>
Completed
Last Updated: 28 May 2014 13:22 by ADMIN
Declined
Last Updated: 09 Apr 2014 11:20 by ADMIN
Created by: Germain
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Completed
Last Updated: 14 Sep 2021 09:46 by ADMIN
Release Q3 2014
This issue is happening due to the insertion of the /n character in the comment editable area. This character breaks the logic of some content filters and they are replacing the greater than and less than characters in the HTML mode. 

Possible workaround is to disable the ConvertCharactersToEntities filter:

C# example:
RadEditor1.DisableFilter(EditorFilters.ConvertCharactersToEntities);

VB example:
RadEditor1.DisableFilter(EditorFilters.ConvertCharactersToEntities)
Completed
Last Updated: 14 Sep 2021 10:20 by ADMIN
Release Q2 2014 SP1
This problem causes link and other elements to be added in the top of the content and not to modify the actual selected element. 
Declined
Last Updated: 11 Jun 2021 11:55 by ADMIN
Created by: Raimund
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
0
a radmenu  with input-fields would be very usefull
this would work the same way like a configuration-menu
Completed
Last Updated: 04 Jul 2019 07:47 by ADMIN
ADMIN
Created by: Ivan Zhekov
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0
When trying to load a light-weight skin from external assembly (other than Telerik.Web.UI.Skins), the path to the files is not resolved correctly, hence no resource is loaded.
Completed
Last Updated: 02 Nov 2021 14:35 by ADMIN
This issue causes some content added by user to be not included when Track Changes are accepted. This is because the text is inserted in the INS tag, which is determined as deleted text by the feature's logic.
Completed
Last Updated: 26 Jul 2016 08:41 by ADMIN
ADMIN
Created by: Ivan Zhekov
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Short version:  needed for IE browsers and overlaying external plugins such as PDF

To overlay external content such as PDF in some browsers, we need just Z-index. In other, we need an iframe inside the overlay.
Completed
Last Updated: 10 Oct 2014 14:59 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
This property will define the MaxJsonLenght size.
Completed
Last Updated: 14 Sep 2021 09:42 by ADMIN
Release Q2 2015
The link manager provides approach to add anchors with unique ID and name. The name should be inserted dynamically in a collection shown in the "Existing Anchor" drop down. For some reason this dropdown is never populated without reloading the RadWindow.

Possible resolution is forcing the dialog to reload on each show:

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

<script type="text/javascript">
    function OnClientCommandExecuted(editor, args) {
        var command = args.get_commandName();

        if (command === "LinkManager") {
            var dialogOpener = editor.get_dialogOpener();
            var linkManager = dialogOpener._dialogContainers[command];
            linkManager.add_show(function () {
                linkManager.reload();
            });
        }
    }
</script>
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>
Declined
Last Updated: 16 Mar 2015 11:48 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Won't Fix
Last Updated: 02 Sep 2016 15:42 by ADMIN
Completed
Last Updated: 20 May 2014 08:27 by ADMIN
ADMIN
Created by: Maria Ilieva
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Completed
Last Updated: 06 Oct 2016 15:13 by ADMIN
In case, where paragraph(<p>) with style "font-style: normal" is nested inside table cell (<td>) with style  "style="font-style: italic;" the command incorrectly displays that the content has italic decoration applied and if used the cell is split into three new cells.
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Completed
Last Updated: 31 Oct 2014 08:44 by ADMIN
The mdf mentioned in the read me and that the application uses does not appear to be a part of the source download. If it is could I be pointed to it, please? I cannot find it.
Completed
Last Updated: 09 Jun 2021 15:42 by ADMIN
For the time being the following CSS can be used:
CSS:
        <style>
            .RadPanelBar .rpGroup .rpLink, .RadPanelBar .rpGroup .rpTemplate .RadButton {
                line-height: normal;
            }
        </style
ASPX:
        <telerik:RadPanelBar ID="rpbOptions" runat="server" Width="200px" ExpandMode="SingleExpandedItem" AllowCollapseAllItems="true" Font-Bold="True">

            <Items>
                <telerik:RadPanelItem Text="Delivery Method" Font-Size="Small">
                    <Items>
                        <telerik:RadPanelItem Expanded="true">
                            <ContentTemplate>
                                <div id="div1">
                                    &nbsp;
                     <telerik:RadButton ToggleType="Radio" ButtonType="ToggleButton" ID="RadButton9" runat="server" GroupName="gDeliveyMethod" Checked="true" AutoPostBack="false" Text="Pickup" ForeColor="#295B8B"></telerik:RadButton>
                                    <br />
                                    &nbsp;
                      <telerik:RadButton ToggleType="Radio" ButtonType="ToggleButton" ID="RadButton10" runat="server" GroupName="gDeliveyMethod" AutoPostBack="false" Font-Size="X-Small" ForeColor="#295B8B" Text="Courier"></telerik:RadButton>
                                    </span><br />
                                    &nbsp;
                      <telerik:RadButton ToggleType="Radio" ButtonType="ToggleButton" ID="RadButton11" runat="server" GroupName="gDeliveyMethod" AutoPostBack="false" Font-Size="X-Small" ForeColor="#295B8B" Text="US Mail"></telerik:RadButton>
                                    <br />
                                </div>
                            </ContentTemplate>
                        </telerik:RadPanelItem>
                    </Items>
                </telerik:RadPanelItem>
            </Items>
        </telerik:RadPanelBar>