Won't Fix
Last Updated: 15 Jul 2015 10:49 by ADMIN
The issue is caused by a bug in the KB3057839 windows update. The bug has been reported to Microsoft and can be tracked at the following link:

https://connect.microsoft.com/VisualStudio/feedback/details/1475291

Currently the only workaround is to revert the KB3057839 update on the production server.
Declined
Last Updated: 18 Aug 2015 15:47 by ADMIN
ADMIN
Created by: Ianko
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Enabling Fluid behavior of RadEditor (Width="100%") causes the tools not to collapse with a smaller view-port. Also, there are some further visual glitches with the toolbar.

Solution 1: Add a CSS rule to expand the height of the tool-groups automatically.

    .<SkinName>.reToolbar {
                height:auto !important;
    }

Solution 2: Enable Lightweight rendering (or Auto).

    <telerik:RadEditor ID="RadEditor1" Skin="Silk" RenderMode="Lightweight" runat="server" Width="100%" >
    </telerik:RadEditor>

Completed
Last Updated: 04 May 2020 14:35 by ADMIN
Created by: Wiesław
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
2
Please create high contrast theme for people with disabilities.

The best colors are yellow and black and there should be two combinations: yellow on black and black on yellow.

Please look at attachements for very good example.
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.
Declined
Last Updated: 10 Jan 2018 11:29 by Doug
Created by: Doug
Comments: 3
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Would be nice to have a  single sign on control (eg like http://www.gigya.com/)
What this means is that you can sign on/sign up  with any social login.
Would like this to work well with ajax controls and KendoUI
This sign on is megga important on mobile, but good for conversions on standard laptop or HD websites.
Completed
Last Updated: 16 Jul 2015 07:49 by ADMIN
Completed
Last Updated: 10 Aug 2015 15:32 by ADMIN
ADMIN
Created by: Ianko
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
When end-user changes the font-name and size of a single word in the content, pressing spacebar resets the formatting to its default state. 

Steps to reproduce:

    1. Go to http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx;
    2. Remove all content and add a simple sentence, e.g., "some text";
    3. Highlight "text";
    4. Change font-name and size;
    5. Put the cursor right after "text"
    6. Press spacebar (add white space)
    7. Type another word.
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: 29 Sep 2015 10:55 by ADMIN
This leads to possibility for the end-user to press the button before selecting the content area and accept/reject tracked content. 

This can be resolved via some custom code that disables the tools on initial load. For example:

<telerik:RadEditor runat="server" ID="RadEditor1" OnClientLoad="OnClientLoad"
    EnableTrackChanges="true" TrackChangesSettings-CanAcceptTrackChanges="false">
    <Tools>
        <telerik:EditorToolGroup>
            <telerik:EditorTool Name="AcceptTrackChange" Text="Accept Track Change" />
            <telerik:EditorTool Name="RejectTrackChange" Text="Reject Track Change" />
            <telerik:EditorTool Name="AcceptAllTrackChanges" Text="Accept All Track Changes" />
            <telerik:EditorTool Name="RejectAllTrackChanges" Text="Reject All Track Changes" />
            <telerik:EditorTool Name="EnableTrackChangesOverride" Text="Enable Track Changes Override" />
        </telerik:EditorToolGroup>
    </Tools>
</telerik:RadEditor>

<script type="text/javascript">
    function OnClientLoad(sender, args) {
        var editor = sender;
        var toolNamesToDisable = ["AcceptTrackChange", "RejectTrackChange",
            "AcceptAllTrackChanges", "RejectAllTrackChanges"];
        var canAcceptChanges = editor.get_canAcceptTrackChanges();

        if (!canAcceptChanges) {
            for (var i = 0; i < toolNamesToDisable.length; i++) {
                var toolName = toolNamesToDisable[i];
                editor.getToolByName(toolName)
                    .setState(Telerik.Web.UI.Editor.CommandStates.Disabled)
            }
        }
    }
</script>
Completed
Last Updated: 01 Jun 2016 16:07 by ADMIN
I have 2 ideas for teleriks control future, i will love to have a 3D graphics in charts for AJAX ASP.NET controls, the infragistics control have some interesting thinks on this ways. my second idea will be a control that can be used to migrate information for excel to a database in our aplications as you can do in the SQL Integration Services.
Completed
Last Updated: 14 Jul 2015 14:34 by Thomas Möchel
ADMIN
Created by: Marin
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Completed
Last Updated: 14 Jul 2015 14:33 by Thomas Möchel
Completed
Last Updated: 13 Jul 2015 08:04 by Christian
Won't Fix
Last Updated: 26 Jun 2015 10:53 by ADMIN
ADMIN
Created by: Maria Ilieva
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0
The grid adds the correct Aria-Selected attribute, but JAWS does not work
Completed
Last Updated: 08 Jun 2017 18:06 by Kaka
The issue is reproducible when an &nbsp; is added in from of the white space, when adding a subsequent white space after a word. The caret is repositioned at the start of the next tag, if such does not exists, it goes to the end of the line.
Completed
Last Updated: 22 Jun 2015 11:06 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 16 Jul 2015 07:52 by Mike
Completed
Last Updated: 24 Jun 2015 07:50 by ADMIN
Won't Fix
Last Updated: 15 Jun 2015 14:31 by ADMIN