Completed
Last Updated: 12 Jan 2016 16:13 by ADMIN
ADMIN
Created by: Plamen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 02 Jun 2016 08:01 by ADMIN
Recently when I was testing my ASP.Net application on different browsers, I found that in some of the browsers the controls did not work as expected.   These browsers were not in the list of compatible browsers mentioned at following URL:  http://www.telerik.com/aspnet-ajax/tech-sheets/browser-support

I then tried to come up with a method in JavaScript that would check if the current browser matched any one of the compatible browser name and browser version mentioned in above URL.  Then I could simply call this JavaScript method in the  page load event of master page and alert the user that the browser he or she is using is not compatible with the website.

It would be nice if such a method was there as part of RadControls library for ASP.Net AJAX. Such a method could be defined on client-side as well on the server-side.  It would  make life easier for a developer using RadControls, since users of the web site could be easily warned if they were using a browser that RadControls did not support.  Right now end users would just see the application behaving strangely when RadControls are rendered on an unsupported browser. 
Completed
Last Updated: 01 Dec 2015 15:02 by ADMIN
ADMIN
Created by: Dimitar
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 20 Sep 2016 06:53 by ADMIN
ADMIN
Created by: Konstantin Dikov
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0
When you enable the control's keyboard navigation, using the arrow keys for navigation does not work when you use NVDA screen reader.
Completed
Last Updated: 30 Dec 2015 15:39 by ADMIN
Completed
Last Updated: 02 Sep 2019 14:33 by ADMIN
Please add an ability to move text in different styles, something like HTML MARQUEE.


For example:

http://www.htmlcodetutorial.com/_MARQUEE_BEHAVIOR.html

http://www.plus2net.com/html_tutorial/html_marquee_behvr.php
Completed
Last Updated: 22 Apr 2016 18:13 by German
ADMIN
Created by: Dimitar
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 04 Mar 2016 03:30 by Aby
AllowSpecialTags should retain special tags like script and iframe. However, enabling it escapes the tags, but they are never restored. 


Workaround: 

SharePoint 2013 allows iframe tags to be saved in the content, so the AllowSpecialTags can be safely removed. 

<telerik:RadHtmlField id="content" FieldName="PublishingPageContent" runat="server" AllowScripts="true"/>
Completed
Last Updated: 05 Feb 2016 12:03 by ADMIN
When the user selects all the content and changes the font family through the FontName command, the chosen value does not remain as the selected one.

The issue is most prominent in Firefox, but could be reproduced in Chrome with a subsequent select all.
Completed
Last Updated: 07 Jun 2016 05:30 by croach01
ADMIN
Created by: Ianko
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
IE browser handles backspaces at some extent, but causes undesired HTML formatting when the entire UL|OL is wrapped in another DOM element. 

RadEditor can reuse the DeleteCommand implementation in order to bypass browser's behavior and give more reliable results.


The following override can show you how you can handle this on your own and correct the browser result (Note that the script should be loaded after the RadEditor scripts in order to work):

<telerik:RadEditor runat="server" ID="RadEditor1">
    <Content>
            <div>
                <ul>
                    <li>Purple</li>
                    <li></li>
                </ul>
            </div>
    </Content>
</telerik:RadEditor>

<script>
    var originalApplyFix = Telerik.Web.UI.Editor.DeleteFix.prototype.applyFix;

    Telerik.Web.UI.Editor.DeleteFix.prototype.applyFix = function (e) {
        var that = this;
        var $E = Telerik.Web.UI.Editor;
        var utils = $E.Utils;
        var range = that._getRange();
        
        originalApplyFix.call(that, e);

        if (Telerik.Web.Browser.ie) {
            var startContainer = range.startContainer;
            if (utils.isTag(startContainer, "li") && utils.isEmptyDom(startContainer) && !startContainer.nextElementSibling) {
                var outdent = new $E.OutdentCommand(that.editor);
                outdent.onExecute();
                $telerik.preventDefault(e);
            }
        }

    };
</script>

Completed
Last Updated: 15 Feb 2016 14:30 by ADMIN
Completed
Last Updated: 18 Feb 2016 17:49 by ADMIN
Completed
Last Updated: 01 Jun 2016 14:18 by abigail
Created by: abigail
Comments: 3
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Hi! could you consider implemnet a custom radio button that for the selected shows and image instead of the default circle for the radio button and that include a access key to select the option. That can bind a datasource an configure columns for show the radio options in the image for example can bind a databound for the answers and configure that shows by 2 columns and the image for the radio selected and maybe you can configure if the image is in the left, right, top or bottom
Completed
Last Updated: 11 Feb 2016 16:38 by ADMIN
ADMIN
Created by: Kostadin
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 15 Feb 2016 15:19 by ADMIN
ADMIN
Created by: Viktor Tachev
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Completed
Last Updated: 02 Mar 2016 11:19 by ADMIN
The height of the ImageManager's Upload dialog overflows the height of its wrapper when the Editor is used in Metro or Bootstrap skin in LightWeight mode.

Video: https://goo.gl/Kxn2CA


Completed
Last Updated: 26 Feb 2016 10:01 by ADMIN
The active color of the tabs in the Editor's Image manager is blue, which matches the color of the wrapper of the tabs. The issue occurs in LightWeight Editor, in Metro skin.

video:  https://goo.gl/Un7Evf
Completed
Last Updated: 15 Mar 2016 14:51 by ADMIN
Completed
Last Updated: 21 Jun 2016 13:22 by ADMIN
ADMIN
Created by: Veselin Tsvetanov
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0