Completed
Last Updated: 21 Apr 2022 08:08 by ADMIN
Created by: Balasubramanian
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Business Intelligence Dashboard to create flexible decision support solutions and deliver dashboard consoles that accurately inform executives and users throughout your organization. 

integrated Dashboard Designer like https://www.devexpress.com/Products/NET/Dashboard/
Completed
Last Updated: 16 May 2017 13:34 by ADMIN
Additional white border added to the RadRibbonbar buttons in Windows7 skin. The problem is reproducible in Classic rendering.

Steps to reproduce:
1. Open http://demos.telerik.com/aspnet-ajax/ribbonbar/examples/rendermodes/defaultcs.aspx?skin=Windows7

2. Switch to Classic rendering.

Result: All buttons have white border.
Completed
Last Updated: 09 Jun 2021 16:39 by ADMIN
Created by: improwise
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
1
Hi,

Make configuration wizards work even on high resolution screens with scaling. See attached screen shot. 

Regards,
Patrik Johansson
Completed
Last Updated: 05 Dec 2018 17:36 by MA
ADMIN
Created by: Vessy
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1
When the scripts are loaded through a script manager with enabled CDN and RadScriptManager.CombinedResource="Enabled", JS error will be thrown then the filtering button of the Grid is clicked.

Code to reproduce the problem:
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
            <CdnSettings TelerikCdn="Enabled" CombinedResource="Enabled" />
        </telerik:RadScriptManager>

        <telerik:RadGrid ID="UserDetailsGrid" runat="server" AllowFilteringByColumn="true" OnNeedDataSource="UserDetailsGrid_NeedDataSource"
            EnableHeaderContextMenu="true" EnableHeaderContextFilterMenu="true">
        </telerik:RadGrid>

C#:
        protected void UserDetailsGrid_NeedDataSource(object sender, Telerik.Web.UI.GridNeedDataSourceEventArgs e)
        {
            var list = new[] {
                    new { FirstName = "F1", LastName ="L1"},
                    new { FirstName = "F2", LastName ="L2"},
                    new { FirstName = "F3", LastName ="L3"},
                    new { FirstName = "F4", LastName ="L4"}
                    }.ToList();
            UserDetailsGrid.DataSource = list;
        }
Completed
Last Updated: 02 Jun 2017 14:57 by ADMIN
The disabled items in RadMenu have wrong styles applied and look like enabled.

WORKAROUND:

        .RadMenu .rmGroup a.rmLink.rmDisabled,
        .RadMenu .rmGroup a.rmLink.rmDisabled:hover {
            color: #677277;
        }
        .RadMenu .rmGroup a.rmLink.rmDisabled.rmFocused {
            box-shadow: inset 0 0 3px 1px;
        }




Steps to reproduce:

        <telerik:RadMenu ID="RadMenu1" runat="server" RenderMode="Classic" Skin="Glow">
            <Items>
                <telerik:RadMenuItem Text="Home" NavigateUrl="Default.aspx">
                    <Items>
                        <telerik:RadMenuItem Text="Disabled" Enabled="false"></telerik:RadMenuItem>
                        <telerik:RadMenuItem Text="Home row2"></telerik:RadMenuItem>
                        <telerik:RadMenuItem Text="Home row3"></telerik:RadMenuItem>
                        <telerik:RadMenuItem Text="Home row4"></telerik:RadMenuItem>
                    </Items>
                </telerik:RadMenuItem>
                <telerik:RadMenuItem IsSeparator="true" />
                <telerik:RadMenuItem Text="Grid Page" NavigateUrl="Grid.aspx" />
                <telerik:RadMenuItem IsSeparator="true" />
                <telerik:RadMenuItem Text="About" Enabled="false" />
                <telerik:RadMenuItem IsSeparator="true" />
            </Items>
        </telerik:RadMenu>
Completed
Last Updated: 27 Jun 2017 14:55 by Daniel
Created by: Daniel
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Please add support for JQuery 3.x to Telerik ASP.NET for AJAX.  I am able to integrate Telerik into a nice Bootstrap dashboard, but the jquery versions are no compatible.  Telerik is further behind on the jQuery version.
Won't Fix
Last Updated: 13 Sep 2017 06:45 by ADMIN
Won't Fix
Last Updated: 19 Mar 2019 14:26 by ADMIN
Load in IE this demo: http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx

Enter in HTML mode - <p><a href="stm:b4f0c9ac-9a08-4c9f-8caf-39ccd4a83fc9" class="stm" contenteditable="false">Statement 111</a></p>

Switch to Design mode

Search for Statement with the Find and Replace dialog

The dialog won't be able to locate and highlight the link
Completed
Last Updated: 26 Apr 2022 13:30 by ADMIN
Created by: Darrin
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Would it be possible to make the RadProgressBar fully functional at design time ?  

Currently any property changes you make in design time do not show on a form that's in design view

Being able to set height, width etc and have it show in design time would be very helpful

Thanks 
Completed
Last Updated: 18 May 2021 13:45 by ADMIN
Release R2 2021 SP1
Lightweight stylesheets for Grid load background images from http://aspnet-skins.telerikstatic.com/ajaxz/2017.2.711/Telerik/Grid/sprite.png; 
Completed
Last Updated: 16 Nov 2017 15:46 by ADMIN
ADMIN
Created by: Vessy
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1
RadGrid's footer has wrong color in Metro skin - black text over black background. The problem is specific for Classic render mode.
Won't Fix
Last Updated: 28 Sep 2017 14:06 by ADMIN
Completed
Last Updated: 27 Sep 2018 15:14 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1
I am seeing a strange problem when opening LinkManager dialog from RadEditor. The width of the dialog keeps decreasing on successive opening of the dialog. Sample page code to reproduce this is given below.
You can see a video of this issue at think URL : https://goo.gl/UuPwtA    
Sample page code (code-behind is empty)

<%@ Page Language="C#" AutoEventWireup="true"%>

<!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>
    <telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server" />
</head>
<body>
    <form id="form1" runat="server">
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
        </telerik:RadScriptManager>
        <div>
            <telerik:RadEditor ID="RadEditor1" runat="server" ToolbarMode="Default" RenderMode="Lightweight"  Skin="Metro"></telerik:RadEditor>
        </div>
    </form>
</body>
</html>

Reproducible in every browser.
Completed
Last Updated: 04 Aug 2020 09:51 by ADMIN
Created by: Doug
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
Some of the Red controls can be used for server side only (no UI).
I typically use RadGrid to perform something that it is good at (grouping and arranging data) then export it to Excel. 
So if the UI is actually and output file this can be very handy, why have a web interface if you are actually created a report of some kind.
You had a Reporting tool kit, but times have moved on to Self Service and PowerBI type tools. It just seems that you have a lot of code in DLL that could be repurposed for process pipelines, not for a web interface, tho  the final results could be reused there.
Declined
Last Updated: 27 Mar 2019 14:12 by ADMIN
ADMIN
Created by: Rumen
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1
We are current experiencing a whitescreen with Telerik UI Controls for asp.net Ajax in chrome browser when the zoom level is less than 100. We observed a white screen instead of the rendered controls within main content area of our masterpage. The masterpage has several sections, header, left, mainconten, right and footer sections all divided by RadSplitter/RadPane controls. I attached a sample solution and screenshots of the observed issue.

Step to Reproduce:

- Open solution in Visual Studio

- Run choosing Chrome Browser

- Resize browser to 90%

- Reload the page

Expected

Page is rendered

Observed

White screen in the main content area

See attached screenshots
Completed
Last Updated: 22 Nov 2019 14:08 by ADMIN
Release R1 2020
ADMIN
Created by: Vessy
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1
Misspelled words in the TileList's Configuration wizard in Visual Studio:
https://www.screencast.com/t/VmdVK11Q1nLi
Completed
Last Updated: 15 Jan 2020 08:42 by ADMIN
Release R1 2020
Created by: Alexandre
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
It would be great to be able to use the MultiSelect control that is available in all the other UI controls suites. This controls allows a selection behavior and rendering customization that none of the current controls in UI for ASP.NET AJAX offers.
Unplanned
Last Updated: 09 Jun 2021 18:06 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1
https://www.telerik.com/support/kb/aspnet-ajax/details/cannot-scroll-telerik-control-in-ios-11.3---the-page-scrolls-instead
Unplanned
Last Updated: 11 Jun 2021 14:14 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1

			
Declined
Last Updated: 13 Jun 2021 11:20 by ADMIN
Created by: David
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
1
So you don't have a dedicated place to put this so I'm placing it here with the hope the right person get it.

I don't use the MSI to do my updates because I hate my controls being placed into ind folders that you came up with. I constantly find myself rummaging through them looking for the correct control.

HOWEVER.. if I manually DL them and ref the DLL and create a folder of my own making all the controls flow in in alphabetical order and I can get to the exact one I need instantly.

If the MSI can be changed to ask me for how I want them placed into VS so that happens I can then DL the MSI and get all the other features I lose doing it this way.

After talking with CS/Tech support the asp.net/Core is for MVC type applications. I'd like to suggest dropping the word "core" and changing it to MVC to avoid confusion.

So hope this gets to the right set of eyes.

Cheers!