Completed
Last Updated: 14 Sep 2021 10:15 by ADMIN
Release Q3 2015
When adding nested list elements in the content, the user is able to go to parent element, press enter and add a sibling element.
This element, as expected has a br tag that allows user to type text, but deleting this tag causes the list item to be not editable and the user is forced to go to HTML mode to modify the HTML code manually.
Completed
Last Updated: 14 Sep 2021 10:13 by ADMIN
If a RadPane has a scrollable content (it does not fit into its dimensions), under iOS and Android, you should tap and hold on a textbox to start typing in it. If you have a RadComboBox in the same scenario, it is not possible to expand its items under Android Chrome and Opera.

Note: the issue is not reproducible, if that same content is loaded through the RadPane ContentUrl property.
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 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: 01 Sep 2021 06:58 by ADMIN
RadCodeBLock and RadScriptBlock is not able to handle the server tags for all case scenarios, hence RadAjaxManager throws the exception mentioned in the title.
Completed
Last Updated: 13 Aug 2021 12:07 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Won't Fix
Last Updated: 13 Aug 2021 12:07 by ADMIN
Completed
Last Updated: 13 Aug 2021 11:49 by ADMIN
Release Q1 2016
Completed
Last Updated: 13 Aug 2021 11:47 by ADMIN
Release Q1 2016
Completed
Last Updated: 13 Aug 2021 11:46 by ADMIN
Release Q1 2016
Completed
Last Updated: 11 Aug 2021 19:26 by ADMIN
ADMIN
Created by: Ivan Zhekov
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1
Steps to reproduce:

1) Create a vertical RadMenu with one item only
2) Hover the item

Result: slight displacement
Declined
Last Updated: 10 Aug 2021 15:12 by ADMIN
Created by: Matt
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
1
I am doing a bin deployment on a web site for the following assemblies...

Telerik.Windows.Documents.Core
Telerik.Windows.Zip
Telerik.Windows.Documents.Fixed
Telerik.Windows.Documents.Flow
Telerik.Windows.Documents.Flow.FormatProviders.Pdf
Telerik.Windows.Documents.Spreadsheet
Telerik.Windows.Maths
Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml
Telerik.Windows.Documents.Spreadsheet.FormatProviders.Pdf

I recently used the upgrade wizard, and it successfully updated the versions for these assemblies, but it did not update the version numbers in the Web.config.  I manually removed the version number completely from Web.config, and it seems to work fine.
Declined
Last Updated: 10 Aug 2021 14:06 by ADMIN
Created by: kencox
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
3
The new scaffolding capabilities in ASP.NET web forms are great for productivity.

I'd like to see Telerik-specific scaffolding that substituted Telerik controls.
Completed
Last Updated: 10 Aug 2021 13:14 by ADMIN
Completed
Last Updated: 04 Aug 2021 12:59 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Caused by 

https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/GbVcuwg_QjM/discussion%5B1-25%5D
https://stackoverflow.com/a/45495974
https://stackoverflow.com/a/45746963

Workaround attached
Completed
Last Updated: 27 Jul 2021 15:32 by ADMIN
Release 2021 R3
Created by: Galina
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0

Looks like it is a typo in the Telerik code. When I use skin web20 on the page and RadNotification I get exception :

An error occurred processing a web or script resource request. The requested resource 'pTelerik.Web.UI.Skins|Telerik.Web.UI.Skins.Web20Lite.Notification.Web20.css' does not exist or there was a problem loading it.

Note, there is "p" before Telerik namespace. 

Unplanned
Last Updated: 26 Jul 2021 10:44 by ADMIN
Created by: Jason
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
2

Telerik,

Respectfully recommending a guide feature for new users for our Application (Something similar to what this website does https://shepherdjs.dev/) Users can essentially step through controls we have on the page and we have a small verbiage/info for them that is easily digestible. 

Would help tremendously on onboarding new users and documenting new features. 

Completed
Last Updated: 23 Jun 2021 08:21 by ADMIN
Release R2 2021 SP1

The R2 2021 update causes all controls in Classic RenderMode to change their layout and size due to different font-size, font-family and line-height. 

Fixing this change is planned for the upcoming Service Pack.

In the meantime, you can use the styles in the attachment. Due to the fact that the selectors are the same as the ones in the built-in skin, you need to load them either in the beginning of the <body> or using RadStylesheetManager. If you are using the StylesheetManager, ensure you set a big OrderIndex for the entry:

<telerik:RadStyleSheetManager runat="server"  >
    <StyleSheets>
        <telerik:StyleSheetReference Path="fixes.css" OrderIndex="99999" />
    </StyleSheets>
</telerik:RadStyleSheetManager>

Loading the styles in the <head> tag's markup would not work as the Telerik stylesheets are added programmatically at the end of the <head> tag, meaning it will override the preceding files that have the same selector.

The attachment contains a file for each skin and inside it, it has all styles grouped by control. That means you can load only the file for the skin you are using and optionally remove the styles for controls that you are not using. Keep in mind that some more complex controls(e.g. Grid, Editor, DropDownTree, etc.) contain other Telerik controls as child controls, so you would need to keep the styles for the child controls also.

Please excuse us for the inconvenience caused and thank you for your understanding.

 

Completed
Last Updated: 19 Jun 2021 18:22 by Steve
Release R3 2021
Everything was working well until I upgraded to the latest assemblies (2021.2.616).  Now some pages that utilize the Editor are showing the following client-side error:

"Error while executing filter StripDomEventAttributesFilter - RangeError: Maximum call stack size exceeded"

Once the error occurs, the only way to fix it is to refresh the page.
Won't Fix
Last Updated: 15 Jun 2021 14:38 by ADMIN
Created by: sitefinitysteve
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
3
Certain controls just add bloat to a page.  Like the RadListView is a GREAT control to use inplace of the asp Repeater, but I find I often don't use it (or limit it's use) because it brings down 99.9% useless client scripts.  Most of the time, especially in Sitefinity its a server-side render-only control.  Just used to show data...we don't need ANY client manipulation.