Completed
Last Updated: 16 Jan 2024 15:31 by ADMIN
Release 2024 Q1
Created by: Bill O'Neil
Comments: 0
Category: Grid
Type: Feature Request
0

When the AriaSupport for the Grid is turned on, an aria-label is added to each column header automatically using the UniqueName of the column. The problem is - UniqueName doesn't support empty spaces - all "labels" must be single words or use Underscores - and the screen readers say "underscore."

So my column of "call_date" results in "Call underscore Date" - which is not useful for visually impaired people.

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: 31 Aug 2023 11:27 by ADMIN
Release R3 2023
Created by: Bill O'Neil
Comments: 0
Category: Menu
Type: Feature Request
1

Rendering and tabbing through the menus goes well BUT - the following was reported:

  • With NVDA/Firefox, while the menu item names (File, Edit, View) are announced, but nothing is announced that lets me know that I can expand them to hear more. Usually the space and enter key are used to toggle menus, but neither of those do anything.
  • With NVDA/Chrome, I get the same experience.
  • With JAWS/Chrome, I hear some more info: when I’m on File, I hear File alt plus F (then Edit alt plus E, View alt plus V). It seems like the latter two of these open up the menu visually, but I’m not able to navigate to any of the items with my keyboard or hear them with my screen reader.

The BIG issue seems to be the lack of indication that a SubMenu exists - is this a known issue?  Am I not enabling something I should be?

Current RadMenu config:

  <telerik:RadMenu AriaSettings-Label="Manage a Business Menu" runat="server" ID="m" Width="100%" Skin="Simple" Flow="Horizontal" RenderMode="Lightweight"
                EnableAriaSupport="true" CausesValidation="false" EnableOverlay="false">
                <KeyboardNavigationSettings CommandKey="Alt" FocusKey="M" />
            </telerik:RadMenu>    

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: 28 Dec 2023 14:08 by ADMIN
Created by: Nick
Comments: 1
Category: SearchBox
Type: Feature Request
0

I want to be able to let a user choose "Landlords", "Tenants", "Owners" and search for a name. The data for the search box comes from different tables.

<asp:SqlDataSource ID="SqlDataSourceTenants" runat="server"

                           ConnectionString="<%$ ConnectionStrings:ProjectConnectionString %>"
                           SelectCommand="SELECT Id,TenantEntityName as EntityName FROM TenantEntities"></asp:SqlDataSource>
        <asp:SqlDataSource ID="SqlDataSourceLandlords" runat="server"
                           ConnectionString="<%$ ConnectionStrings:ProjectConnectionString %>"
                           SelectCommand="SELECT Id, LandlordEntityName as EntityName FROM LandlordEntities"></asp:SqlDataSource>
        <asp:SqlDataSource ID="SqlDataSourceOwners" runat="server"
                           ConnectionString="<%$ ConnectionStrings:ProjectConnectionString %>"
                           SelectCommand="SELECT Id,OwnerEntityName As EntityName FROM OwnerEntities"></asp:SqlDataSource> 

I would like to set the DatasourceId on the RadSearchBox to one of the above when the SearchContext changes. I have worked out how to get the selected searchcontext text via an Ajax Request.

     function OnClientLoad(sender, args) {
                    var context = sender.get_searchContext();
                    var $ = $telerik.$;
                    $(context).on({
                        "selectedIndexChanged": function (event) {
                            var searchbox = $find("<%=RadSearchBox1.ClientID%>");

                // this is the search context dropdown selectedIndexChanged event handler 
                            var ajaxManager = $find("<%=RadAjaxManager1.ClientID%>");
                            ajaxManager.ajaxRequest(context.get_selectedItem().get_text());
            }
        });
                }

 

I cannot work out how to change the datasource at runtime (I get datasource not found when I run the following code).

    Protected Sub RadAjaxManager1_OnAjaxRequest(sender As Object, e As AjaxRequestEventArgs)
        if not isnothing(radsearchbox1.datasource)
            select Case e.Argument
                Case "Tenants"
                    RadSearchBox1.DataSource = sqldatasourcetenants
                    RadSearchBox1.databind
                Case "Landlords"
                    RadSearchBox1.DataSource = sqldatasourcelandlords
                    RadSearchBox1.databind
                Case "Owners"
                    RadSearchBox1.DataSource = sqldatasourceowners
                    RadSearchBox1.databind
            End Select
        End If
    End Sub

In the OnSearch Event I just need to get the type of entity (which I could get from checking the Id of the bound datasource) and the Id of the entity:

Protected Sub RadSearchBox1_OnSearch(sender As Object, e As SearchBoxEventArgs)
        If e.DataItem IsNot Nothing Then
            Dim dataItem = DirectCast(e.DataItem, Dictionary(Of String, Object))
            Dim thisId As String = dataItem("Id").ToString()
            Dim thisEntityName As String = dataItem("EntityName").ToString()
            ' Lookup in database and redirect to the relevant data view / edit page
        End If
    End Sub

 

Surely this is a common request and deserves consideration?

 

Completed
Last Updated: 20 Apr 2022 09:45 by ADMIN
Release R2 2022
Created by: rumen jekov
Comments: 1
Category: ClientExportManager
Type: Feature Request
0
How to disable the hyperlinks and mailto URLs into the produced PDF file?
Completed
Last Updated: 26 Apr 2022 13:31 by ADMIN
Release R2 2022
Created by: Stan
Comments: 0
Category: HtmlChart
Type: Feature Request
0

Currently, the HighlightAppearance of the Series does not have a property that controls the InactiveOpacity:

As a temporary workaround, this can be set through the options in the OnKendoWidgetInitializing event:

<script>
    function OnKendoWidgetInitializing(sender, args) {
        var series = args.series[0]
        series.highlight = series.highlight || {};
        series.highlight.inactiveOpacity = 0.2
    }
</script>
<telerik:RadHtmlChart ID="RadHtmlChart5" runat="server" BorderColor="Fuchsia" BorderStyle="Solid" BorderWidth="1px">
    <ClientEvents OnKendoWidgetInitializing="OnKendoWidgetInitializing" />
    <PlotArea>

        <Series>
            <telerik:PieSeries StartAngle="90">
                <%-- This is how it should be configured after the feature request --%>
                <%--<HighlightAppearance InactiveOpacity="0.2" />--%>

                <SeriesItems>
                    <telerik:PieSeriesItem Name="Slice1" Y="60"></telerik:PieSeriesItem>
                    <telerik:PieSeriesItem Name="Slice2" Y="40"></telerik:PieSeriesItem>
                </SeriesItems>
            </telerik:PieSeries>
        </Series>
    </PlotArea>
</telerik:RadHtmlChart>

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 May 2022 09:49 by ADMIN
Release R1 2022

Error message:

Uncaught TypeError: Cannot read properties of undefined (reading '_events')
    at Sys.UI.DomEvent.addHandler (Telerik.Web.UI.WebResource.axd:6:57366)
    at Telerik.Web.UI.RadCalendar.initialize (Telerik.Web.UI.WebResource.axd:4916:8)
    at Telerik.Web.UI.RadCalendar.endUpdate (Telerik.Web.UI.WebResource.axd:6:53689)
    at Sys.Component.create (Telerik.Web.UI.WebResource.axd:6:55151)
    at Array.<anonymous> (Default.aspx:130:5)
    at Telerik.Web.UI.WebResource.axd:6:51370
    at Sys._Application._raiseInit (Telerik.Web.UI.WebResource.axd:6:72276)
    at Sys._Application.initialize (Telerik.Web.UI.WebResource.axd:6:69772)
    at b (Telerik.Web.UI.WebResource.axd:6:71512)
    at HTMLDocument.a (Telerik.Web.UI.WebResource.axd:6:71786)

Possible workarounds from Admin: 

1) Use Lightweight render mode instead of Classic: https://docs.telerik.com/devtools/aspnet-ajax/controls/render-modes#setting-render-mode 

2) Disable temporarily the keyboard navigation of the control

3) Use the attached script and load it on the page: 

3.1) Using a RadScriptManager (adjust the file name and path to fit your application)

<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
    <Scripts>
        <telerik:RadScriptReference Path="fix.js" OutputPosition="End" />
    </Scripts>
</telerik:RadScriptManager>

 

3.2) In an inline script tag somewhere AFTER the ScriptManager(e.g. at the end of the <form> or <body> tag)

3.3) As a script reference - place it AFTER the script manager as 3.2) or use the defer="defer" attribute

<script defer="defer" src="fix.js"></script>

 

4) Submit a support ticket if you would prefer a custom Telerik.Web.UI.dll assembly with the issue resolved.

 

 

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: 08 Nov 2021 12:28 by ADMIN
Release R3 2021 SP1

Under heavy load in a multithreaded environment, a concurrency issue can occur, related to System.Collections.Generic.Dictionary`2.Insert

This might lead to High CPU usage and might require an IIS restart.

Workaround:

 


 

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 Mar 2021 16:14 by ADMIN
Release R2 2021

Regression introduced in R1 2021 SP1 results in an appearance glitch:


 

Completed
Last Updated: 15 Feb 2021 11:43 by ADMIN
Created by: n/a
Comments: 2
Category: SearchBox
Type: Feature Request
0

Perhaps a simple feature to permit high speed searches in RadSearch is to allow custom SQL Select strings in lieu of direct connect to a SQL Datasource (unless there is a way to accomplish the following in a SQL Datasource)

I have FreeText and text optimization configured/added in SQL Server.  This provides a tremendous speed boost for searching strings.  Therefore, somehow in the RadSearch box allow searches such as:

SELECT * FROM myTable WHERE contains(myTextIndexedColumn,'this is fast') 

SELECT * FROM myTable WHERE FreeText(myTextIndexedColumn,'this is so much faster!') 

Completed
Last Updated: 24 Feb 2021 15:45 by ADMIN
Created by: Alessandro
Comments: 1
Category: Chat
Type: Feature Request
0
Whenever I include a link in the chat, it only shows as text.  Is it possible to enable the url display as a link and allow a user to click it?
Completed
Last Updated: 19 Mar 2021 11:47 by ADMIN
Release R1 2021 SP2
Created by: Farhan
Comments: 0
Category: ListView
Type: Feature Request
0

While the Progress SASS ThemeBuilder - UI for ASP.NET AJAX is the only official online Web tool for creating custom Skins, some controls are not included.

We would like the ListView included in this process.


Completed
Last Updated: 17 May 2021 09:13 by ADMIN
Created by: randy
Comments: 1
Category: Grid
Type: Feature Request
2

Current RadGrid only has headers/header templates for column headers. The only way to have headers for each row would be to manipulate the grid data and adding the header for each row into the grid data itself. And if we wanted to group the row headers is another round of manipulating the grid data and also manually merging the cells. Is it possible to have to have it as a feature of the RadGrid just like column groups and column headers to simplify the task? example of the final output ->

  

1 2 3 4 5 6