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>
Declined
Last Updated: 24 Apr 2015 13:37 by ADMIN
It was bug in the Firefox, and now works as expected. Here is markup for testing:
<script runat="server">  
    protected void RadTextBox1_TextChanged(object sender, EventArgs e)
    {
        newText.Text = RadTextBox1.Text;
    }  
</script>
<asp:Label runat="server" ID="newText"></asp:Label>
<telerik:RadTextBox runat="server" ID="RadTextBox1" AutoPostBack="true" OnTextChanged="RadTextBox1_TextChanged"></telerik:RadTextBox>
<asp:Button Text="submit" runat="server" />
Declined
Last Updated: 21 Jun 2022 15:06 by ADMIN
Completed
Last Updated: 20 Sep 2016 06:34 by ADMIN
ADMIN
Created by: Vasil
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Resize before focus, and the focus and start typing.
Here is the page:

<!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></title>

</head>
<body>
    <form id="form1" runat="server">
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>

        <telerik:RadTextBox ID="RadTextBox1" runat="server" TextMode="MultiLine" Resize="Vertical"></telerik:RadTextBox>

    </form>
</body>
</html>
Completed
Last Updated: 06 May 2014 13:06 by ADMIN
Basic screen design tool will help designers design screens quickly and visualize how they will look with Telerik controls. And then developer with telerik license can develop it as designed by designer.
Completed
Last Updated: 24 Feb 2015 17:02 by ADMIN
The shortcut TAB key provides correct behavior only for IE (&nbsp; entities are added). UNder Firefox and Chrome the behavior is incorrect and not expected.

In FF - nothing is added to the content, moves the focus to the next HTML element.

In Chrome - a SPAN element is inserted.

A possible resolutions replacing the added shortcut for TAB key with the InsertTab command:

<telerik:RadEditor ID="RadEditor1" runat="server" OnClientLoad="OnClientLoad">
</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");
		}
	}
</script>

Completed
Last Updated: 11 Mar 2014 17:04 by Bruce
Created by: Bruce
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
3
Instead of pages like this, which exist for every control and aren't very helpful:
http://www.telerik.com/help/aspnet-ajax/scheduler-appearance-skins.html

I think the skins page should actually render the control and allow developers/designers to select a skin from a drop down to properly demonstrate how the control appears in that skin. 

The logic behind this is somewhat similar to the property explorer pages. As with the property explorer pages, the RenderMode should also be selectable from the proposed skin page because it affects the way the skin is rendered. 

Without this feature I find myself starting a test page, typing in a skin name, save changes, load page, new skin name... repeat, repeat. Please add this feature to make this process a whole lot easier.
Declined
Last Updated: 23 Jun 2022 09:19 by ADMIN
Unplanned
Last Updated: 10 Mar 2014 17:48 by Chris
ADMIN
Created by: Hristo Valyavicharski
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
2

			
Unplanned
Last Updated: 10 Mar 2014 12:30 by ADMIN
Declined
Last Updated: 19 Nov 2014 09:43 by ADMIN
Completed
Last Updated: 02 Nov 2021 09:45 by ADMIN
ADMIN
Created by: Ivan Zhekov
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1
All dialog windows triggered from SmartTags (ODataDataSource configuration wizard per say) are distorted and mostly or completely unusable in HDPI environments (150% scaling).

In particular we can observe few main points:

* Window too big to fit on the screen
* Text too big to fit in designated area
* Layout completely distorted
* Icons not showing correctly
Completed
Last Updated: 02 Apr 2015 15:12 by Robert
Declined
Last Updated: 19 Mar 2014 10:45 by ADMIN
sso
Created by: Anthony Mangini
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
sso
Has telerik ever thought of writing an SSO class or control that would allow someone to add the functionality to sign on to their website using sso and SAML 2.0 for secure login?
Declined
Last Updated: 19 Mar 2014 10:47 by ADMIN
Created by: Todd Bannar
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
None of the demos are displaying correctly.  Take a look at: http://demos.telerik.com/aspnet-ajax/orgchart/examples/overview/defaultcs.aspx.  It appears that the stylesheet might be missing.
Completed
Last Updated: 26 Mar 2014 17:20 by Moritz
ADMIN
Created by: Misho
Comments: 4
Category: UI for ASP.NET AJAX
Type: Feature Request
1
The markup intellisense doesn't work in VS 2008 with Q1 2014.
Completed
Last Updated: 20 Jul 2015 08:30 by ADMIN
Declined
Last Updated: 19 Mar 2014 10:46 by ADMIN
Created by: David
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
There is an on your live demo

http://demos.telerik.com/aspnet-ajax/grid/examples/columns-rows/rows/detailitemtemplate/defaultcs.aspx