Completed
Last Updated: 03 Feb 2016 14:26 by Imported User
ADMIN
Created by: Dimitar
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Completed
Last Updated: 06 Nov 2019 13:36 by ADMIN
Created by: Jon
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
It would be nice to have a CardView type panel control.  This could simply be a dezoned raddock control that is optionally missing the header.  I am using some custom CSS for this now so that when the mouse moves over the div the shadow deepens to indicate selection.

It would be nice to adjust the elevation as well.

You can kind of get this now but taking a radwindow or a raddock but a dedicated control would be nice.
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: 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: 09 May 2016 08:39 by ADMIN
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: 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: 13 Jun 2021 11:31 by ADMIN
Created by: Matt
Comments: 4
Category: UI for ASP.NET AJAX
Type: Feature Request
2
Possibly as an extension of the Media Player... a Web Cam recorder.
Completed
Last Updated: 10 Aug 2021 13:14 by ADMIN
Declined
Last Updated: 14 Jun 2021 15:45 by ADMIN
Created by: Doug
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
An existing control looks like http://demos.devexpress.com/ASPxImageAndDataNavigationDemos/NewsControl/DataBinding.aspx
Where this control would allow you to express the UI of the aggregated feed data, where as the  feeds from RSS or  LinkedIn, YouTube etc can be sorted, grouped, stared or shared. 
So ideally feeds can be added at run time. Personal settings could be saved using existing tooling.
The ideal solution would allow the end user to customize their feeds.
Ideally it would degrade well onto a mobile  interface so you can flick thru all the feeds, flick to the left or right to dismiss or save. This is a bit more KendoUI
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: 26 Feb 2016 12:54 by ADMIN
Completed
Last Updated: 30 Dec 2015 15:39 by ADMIN
Completed
Last Updated: 03 Aug 2018 21:45 by Brad
Unplanned
Last Updated: 11 Dec 2015 07:51 by ADMIN
Created by: Kavitha
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
2
It would be helpful , if you provide image library like Visual Studio provides.
The image library can have all the standard and specific icons of telerik.
Completed
Last Updated: 24 Sep 2017 21:58 by Matt Smith
The DragAndDrop functionality of the RadAsyncUpload under Edge, works properly if DropZones property of the control is set.
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: 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: 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.