Completed
Last Updated: 16 Jan 2024 13:15 by ADMIN
Release 2024 Q1
Created by: Sheng
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

When the grid has a horizontal scroll bar displayed, we can't scroll the table horizontally using keyboard only.  If testing using the Siteimprove Accessibility Checker, we will get the issue "Scrollable element is not keyboard accessible".

The reason is that when the RadGrid is rendered, the horizontal scroll bar is render as a separate <div> out of the data table, and the horizontal scroll bar doesn’t have a tabindex, so there’s no way to put focus on it using keyboard.  Can you add tabindex="0" to the horizontal scroll bar?

 

Completed
Last Updated: 27 Oct 2022 12:55 by ADMIN

Scenario: need dynamically change header test on dropdown change, while retaining HeaderContext filter type icon

After conversation with support created this request

Completed
Last Updated: 05 Mar 2023 01:23 by ADMIN
Created by: Shane
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Implement a signature control (mirror the functionality of the MVC signature component).
Completed
Last Updated: 01 Mar 2022 14:22 by ADMIN

I am reaching out in regards of an update we need to resolve a vulnerability in our system. I am not aware if my company has a license already but I was informed that we could get the hotfix by opening a ticket. Please let me know if there is another method to get the hotfix.

Contact email: xxxxx <- updated by Telerik admin

 

 

Response we got from TELERIK:

If you don't have an active license, you can reach out the Telerik support by opening a General Feedback ticket.

Completed
Last Updated: 20 Apr 2022 09:40 by ADMIN
Release R2 2022
Created by: rumen jekov
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
1
I am using the ClientExportManager with pageBreaks and I am finding that any overflow is cut off in the pdf if the content is too big for one page. Is there a setting to either zoom out so all content of the wizard step is put on one pdf page?
Completed
Last Updated: 26 Aug 2022 10:38 by ADMIN
Created by: IT Services
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

I suggest to allow developers to customize the GridColumnGroup header. 

Custom column group headers should be a built-in feature of the RadGrid.

Completed
Last Updated: 20 Apr 2022 16:02 by ADMIN
Release R2 2022
Created by: Dave
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
I'm using Version 2021.2.616.45 and attempting to detect Microsoft Edge.  When using Edge in Windows 10, Telerik.Web.Browser.edge is false, but shows chrome is true. 

There are Telerik controls on the page, but I've also explicitly added Telerik.Web.UI.Common.Core.js to the script manager.  I get that Edge is a chromium browser, but I need to detect Edge.
Completed
Last Updated: 07 Sep 2023 11:15 by ADMIN
Created by: Simon
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Telerik document shows upgraded Rad components support WCAG 2.0,  section 508, not sure any plan or target date to upgrade Rad components support WCAG 2.1?
Completed
Last Updated: 01 Jun 2021 08:19 by ADMIN
Created by: Peter
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
0

Progress Telerik seems to be more focused on pursuing technology we’re not using, and There haven’t been major upgrades to the Windows Forms and ASP.NET controls that we use in our legacy apps.

The tools are great and we use them extensively, even in newer upgrades to our legacy apps.

But we haven’t seen a whole lot of improvements where we’d like to see them, so it’s not worth the maintenance cost.

On the Windows Forms side, we spend a lot of time navigating through the multi-layer structures of the tools, a set-wide consistent change that was implemented over 5 years ago.  It’s good for consistency, but makes certain properties and events unintuitive.  (E.g., “Why won’t this drop down list work handle the ENTER key being pressed?” “Well, that’s actually the enter event in the embedded control.”)

 

Our biggest usage on Windows Forms tools are RadButton, RadPageView, RadToggleButton, RadTextBox, and RadSpinEditor – and THAT’S IT.

And they are fairly stable and unchanged in the Progress Telerik line.

 

On the ASP.NET/AJAX side, it’s frustrating not to have things like cascading drop boxes without getting into a whole lot of Javascript and AJAX coding… which sort of defeats the point of buying a product that proposes to do all that for you. That’s been the only thing we hoped to see updated, some kind of way to preload multiple combos and have it auto-filter based on linked selections, and it never happened.

 

Our biggest usage on ASP.NET/AJAX tools are RadComboBox, RadDatePicker, RadEditor and RadSpell – and THAT’S IT.

These are also fairly stable and have been mostly unchanged in the Progress Telerik line.

 

Progress Telerik is rightfully focused on more emerging technologies – we don’t fault the company for that – but most of our work is legacy software we built 10-20 years ago and still maintain, or new clients wanting similar products (so it makes financial sense to use the legacy platform as a basis).  If we had an unlimited budget and R&D time, we’d LOVE to explore all the newer technologies and platforms… but it’s just not compatible with our business model (which serves small and mid-range companies with VERY tight budgets).

 

That makes it hard to justify the thousand or multi-hundred dollar maintenance fee to get periodic patches, when the existing versions are stable and working just fine for us.

 

If seems like Progress Telerik almost treats these tools as legacy products, and that it’s really not focused on them as much. (Again, we understand, that makes sense.)

Completed
Last Updated: 19 Oct 2020 08:27 by ADMIN
Release R3 2020 SP1
Created by: Narendra
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

Currently, the asp:Label and telerik:RadLabel are rendering the AssociatedControlID of the ComboBox as for="RadComboBox1" while it should be for="RadComboBox1_Input"

FROM ADMIN:

1) Use Sys.Application.Load event to fix all labels associated with RadComboBoxes: 

<script type="text/javascript">
    function fixLabelFor() {
        $telerik.$("label[for]").each(function () {
            var lbl = $telerik.$(this)
            if ($telerik.$("#" + lbl.attr("for")).hasClass("RadComboBox")) {
                lbl.attr("for", lbl.attr("for") + "_Input");
            }
        })
        // Sys.Application.remove_load(fixLabelFor); 
    }
    Sys.Application.add_load(fixLabelFor);
</script>


2) Use OnClientLoad of the ComboBox you want to apply the fix to:
<script>
    function OnClientLoad(sender, args) {
        var ariasettings = JSON.parse(sender._ariaSettings)
        if (ariasettings && ariasettings["aria-describedby"]) {
            var lbl = $get(ariasettings["aria-describedby"]);
            lbl.setAttribute("for", lbl.getAttribute("for") + "_Input")
        }
    }
</script>

Completed
Last Updated: 21 Apr 2022 08:06 by ADMIN
Created by: KFC
Comments: 3
Category: UI for ASP.NET AJAX
Type: Feature Request
1

Hi Team,

I received this from Khurram,

One small suggestion is for your ASP.net AJAX library to include two themes outside the box i.e. Windows 10 Dark and Windows 10 Light theme.

Completed
Last Updated: 07 May 2020 11:48 by ADMIN
Release R2 2020
Created by: Christopher
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

We recently went to address a vulnerability finding in our application whereby a user could exploit a vulnerability in the Telerik.Web.UI version 2015.3.1111.45.  Unfortunately after applying the patched version of this assembly, when running the exploit by calling [site root]/Telerik.Web.UI.DialogHandler.aspx?DialogName=DocumentManager&renderMode=2&Skin=Default&Title=Document%20Manager&dpptn=&isRtl=false&dp={xxxxxxx}. The page returns a response of:

 

Cannot deserialize dialog parameters. Please refresh the editor page.

Error Message:The hash is not valid!

 

Our security team feels this error message is revealing, and would prefer to have a generic error message.  We have a custom static generic html error message page for our site to catch all unhandled exceptions.  Unfortunately, this error from Telerik.Web.UI does not fall through to the application level and there is apparently no way to override this error message.  Please provide some kind of API or means to change the contents of this error message.

Completed
Last Updated: 20 Feb 2020 09:10 by ADMIN
Created by: Orit
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

Hi , 

Why is your combobox does not support BOTH multiple select AND LoadOnDemand ?

It would be so convenient to have .

I see a lot of questions like that, but all the answers explain why its not supported.

I tried all other recommendations ( like using RadAutoCompleteBox or searchbox ) , but it's not displaying any items in the drop down list ,so the user has to know what he is looking for, withuy having ability to select it from the list. 

PLEase let me know if you have ANY Telerik control which allows both features .

If you do not have , I would like to submit a feature request for that .

I really do not care what control it will be .

All i need is to be able to select from the list ( with option to select all ) , OR to start typing , and then it will prompt for a matches .

Thanks ,

Orit.

 

 

 

Completed
Last Updated: 21 Nov 2019 08:41 by ADMIN
Release R1 2020
As of R1 2020 the Match Case and Match Whole Words options in the Find and Replace dialog will become available for Chrome and Firefox.
Completed
Last Updated: 23 Dec 2019 09:09 by ADMIN
Created by: Doug
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

 Hi

Our O365 users  see 'Excel on the screen'  so it should behave the same, its Excel in a the browser - which means the Ajax controls are competing with this.
Which means our code is crap because there is a difference in investment between us and Microsoft, we are also burdened with the feature that uses are lazy and dont want to think for themselves, the computer is meant to do thier job for them (so why employ them). 
We also use MS Teams here that allows Excel documents to be used in the Browser, Teams joins sharepoint and skype. 

It would be nice to you to look how your controls might integrate with Office 365  tooling, there is enormous traction in the market with MS Teams and O365 so I imagine the AJAX document sources would need O365/azure examples soon.

It matters that you have a skin that allows users to perceive that this app is just like O365, and the same assumptions can be made about the UX, this lifts a lot of the burden for the developers in training, when the affordance of O365 App and Telerik Apps are the same.

I would appreciate a set of demo examples that connect in to Azure/O365 and equally Dynamics365 (BizTalk) because of the traction in the O365 space, the amount of process automation in businesses across the UK and Europe. So many of the Telerik controls looks like desktop controls, many are better it would be useful to show just how easy it is connect into O365, maybe create a Graph Query connector or a sample O365 connector that covers the CRUD operations for office docs.

Thanks in advance 

Completed
Last Updated: 04 Sep 2019 07:58 by ADMIN
Release R3 2019

The current colors, #0082CC and #FFFFFF that are used for forecolor and backcolor, have 4.14:1 color contrast ratio: https://webaim.org/resources/contrastchecker/?fcolor=FFFFFF&bcolor=0082CC

The minimum required color contrast ratio is 4.5:1 for AA Compliance, and 7:1 for AAA Compliance.

A possible alternative color for the #0082CC blue can be #007CC.

Completed
Last Updated: 31 May 2021 15:45 by ADMIN
Please add the new (Core) features for Drawer, PDF Viewer, Adaptive Grid and Adaptive Scheduler to the  ASP.NET AJAX controls.  Thanks.
Completed
Last Updated: 11 Jun 2021 14:25 by ADMIN
Created by: Rathna
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1

Hi,

It will be great to have a property in a raddock to automatically adjust its height/width to occupy the new space created when some other raddock in the layout is minimized. This will avoid the need for the user to adjust the height/width of the raddock which is still visible.

 

Completed
Last Updated: 02 Apr 2019 14:15 by ADMIN
Created by: Scott
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

Hi,

 

Trying to use a web testing tool (Selenium) and using xpath is not always working.  I was wondering if it would be possible to always add an ID property to controls, especially in drop downs etc. so that it can clicked properly.

Completed
Last Updated: 06 Jan 2020 17:04 by ADMIN
Created by: Srini
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
0

Request to addorder tracker component similar to the attached screen shot.

 

Srini

1 2 3 4 5 6