Completed
Last Updated: 19 Apr 2024 14:28 by ADMIN
Release 2024 Q2

Found an additional issue when implementing this on a project:

When aria-enabled=true and we follow their instructions if we have a gridnumericcolumn in the grid, then we get a finding that "Elements must only use supported ARIA attributes" because To solve this problem, you need to fix the following:

 

ASPX

                <telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="False" AllowFilteringByColumn="true" OnNeedDataSource="RadGrid1_NeedDataSource" EnableAriaSupport="true">
                    <ClientSettings>
                        <ClientEvents OnGridCreated="OnGridCreated" />
                    </ClientSettings>
                    <MasterTableView>
                        <Columns>
                            <telerik:GridBoundColumn DataField="ID" HeaderText="ID" UniqueName="ID" />
                            <telerik:GridBoundColumn DataField="Name" HeaderText="Name" UniqueName="Name" />
                            <telerik:GridCheckBoxColumn DataField="IsActive" HeaderText="Active" UniqueName="IsActive" />
                            <telerik:GridNumericColumn DataField="Score" HeaderText="Score" UniqueName="Score" DataType="System.Int32" DataFormatString="{0:N0}" />
                        </Columns>
                    </MasterTableView>
                </telerik:RadGrid>

ASPX.CS

    protected void RadGrid1_NeedDataSource(object sender, GridNeedDataSourceEventArgs e)
    {
        // Creating a dummy data source
        var data = new List<DummyData>
        {
            new DummyData { ID = 1, Name = "John Doe", IsActive = true, Score = 88 },
            new DummyData { ID = 2, Name = "Jane Doe", IsActive = false, Score = 92 }
        };

        RadGrid1.DataSource = data;
    }

    public class DummyData
    {
        public int ID { get; set; }
        public string Name { get; set; }
        public bool IsActive { get; set; }
        public int Score { get; set; }    
    }

Unplanned
Last Updated: 18 Apr 2024 09:59 by omti
Created by: omti
Comments: 0
Category: PivotGrid
Type: Bug Report
0

When the RadPivotGrid is Ajaxified from the RadAjaxManager, the paging functionality doesn't work as intended.

Steps to reproduce: 

  1. Have an Ajaxified PivotGrid
  2. Change the page size (from 10 to 20)
  3. Click the go to next/previous page or first/last page button
Completed
Last Updated: 19 Apr 2024 14:28 by ADMIN
Release 2024 Q2
Created by: reinout
Comments: 3
Category: Editor
Type: Bug Report
0

When I want to clear a class in the RadEditor the class is cleared in the hyperlink manager, but not in the area in the footer of the RadEditor.

If 'clear class' is selected nothing happens.

Completed
Last Updated: 10 Apr 2024 15:31 by ADMIN
Release 2024 Q2
Created by: Wayne
Comments: 1
Category: MultiColumnComboBox
Type: Bug Report
0
The close icon is vertically misaligned

Steps to reproduce:

1. Go to https://demos.telerik.com/aspnet-ajax/multicolumncombobox/overview/defaultcs.aspx

2. Enter any text in the filter

3. See that the X icon is misaligned 
Need More Info
Last Updated: 10 Apr 2024 10:27 by ADMIN
Created by: Tracey Schneider
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0

Hello,

Sometimes the context menu isn't positioned correctly when it pops up for the first time, or after you scroll the page or do a browser zoom. I've attached an example reported by our tester. I've checked your technical support and have found this:

https://feedback.telerik.com/aspnet-ajax/1374622-context-menus-mispositioned-after-page-scroll-when-contentareamode-div?_ga=2.47056743.1148387732.1712639084-795296971.1689564005&_gl=1*1fbejbs*_ga*Nzk1Mjk2OTcxLjE2ODk1NjQwMDU.*_ga_9JSNBCSF54*MTcxMjcwNTQxNS42NS4xLjE3MTI3MDY1NTUuNjAuMC4w*_gcl_au*MTk5NTg1MzE3OS4xNzEyMjAwMDcy

I've tried setting the render mode to Lightweight (originally set to Auto), but unfortunately no luck.

Is this something that is fixed in a later version of the editor, or do you have another fix/workaround?

Thank you in advance,

Gerald

 

 

Completed
Last Updated: 09 Apr 2024 16:02 by ADMIN
Release 2024 Q2
Created by: Frank
Comments: 1
Category: TreeView
Type: Bug Report
0

We are trying to make our website accessible using Wave and one thing we are struggling with is TreeViews with checkboxes enabled. Sometimes the checkbox is rendered as a span element and sometimes as an input element. In the second case Wave is recognizing an error for each node as the input element is not associated with its neighbouring text. You can see this on your own website: https://demos.telerik.com/aspnet-ajax/treeview/examples/functionality/checkboxes/defaultcs.aspx. For the server side tree the checkboxes are rendered as inputs and there is no label associated with it.

This behaviour doesn't change when I set EnableAriaSupport="true".

Completed
Last Updated: 09 Apr 2024 14:50 by ADMIN
Release 2024 Q2
Created by: Laurentiu Stamat
Comments: 1
Category: PdfViewer
Type: Bug Report
0

Bug report
Text cannot be selected in the RadPdfViewer with pdfjs v3.4.120 or newer.

Current behavior
Text cannot be selected

Expected/desired behavior
Text should be selectable

 

Reproduction demos:

Example 1

    <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/3.11.174/pdf.min.js"></script>
    <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/3.11.174/pdf.sandbox.min.js"></script>
    
    <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/3.11.174/pdf.worker.min.js"></script>
    <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/3.11.174/pdf_viewer.min.js"></script>
    <script type="text/javascript">
        window.pdfjsLib.GlobalWorkerOptions.workerSrc = 'https://cdnjs.cloudflare.com/ajax/libs/pdf.js/3.11.174/pdf.worker.js';
    </script>
    <link href="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/3.11.174/pdf_viewer.min.css" type="text/css" rel="stylesheet" />

t>

    <telerik:RadPdfViewer ID="TKPdfViewer" runat="server" Width="100%">
        <ToolBarSettings Items="pager, zoom, toggleSelection, search, download, print, spacer" />
        <PdfjsProcessingSettings File="TestPDF.pdf">
        </PdfjsProcessingSettings>
    </telerik:RadPdfViewer>

Example 2

    <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/3.4.120/pdf.min.js"></script>
    <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/3.4.120/pdf.sandbox.min.js"></script>
    
    <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/3.4.120/pdf.worker.min.js"></script>
    <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/3.4.120/pdf_viewer.min.js"></script>
    <script type="text/javascript">
        window.pdfjsLib.GlobalWorkerOptions.workerSrc = 'https://cdnjs.cloudflare.com/ajax/libs/pdf.js/3.4.120/pdf.worker.js';
    </script>
    <link href="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/3.4.120/pdf_viewer.min.css" type="text/css" rel="stylesheet" />

t>

    <telerik:RadPdfViewer ID="TKPdfViewer" runat="server" Width="100%">
        <ToolBarSettings Items="pager, zoom, toggleSelection, search, download, print, spacer" />
        <PdfjsProcessingSettings File="TestPDF.pdf">
        </PdfjsProcessingSettings>
    </telerik:RadPdfViewer>

Unplanned
Last Updated: 03 Apr 2024 20:07 by ADMIN
Created by: Muhammad Jamil Nawaz
Comments: 1
Category: AutoCompleteBox
Type: Bug Report
0

Hi,

We have a problem in our application, where when the user is typing the text to the input field of auto completed. After pressing "@" the text starts shaking. I tried to reproduce the same issue with online demo.

https://demos.telerik.com/aspnet-ajax/autocompletebox/examples/functionality/rendermodes/defaultcs.aspx

Use render mode Classic.

https://www.loom.com/share/1d67206ea642465d88a01606687fd042?sid=584b1dcd-c5da-45b1-80b2-8297e78d1239

In the render mode Lightweight, the text is always shaking but in the Classic render mode, when the "@" typed, the text is shaking. 

The customer reported this as production issue in our application. Please suggest the solution of this asap.

Regards,
Jamil

Completed
Last Updated: 10 Apr 2024 10:33 by ADMIN
Release 2024 Q2

When using Metro skin, if I click on a disabled button (Undo, Redo, Unlink and so on), its icon disappears until I click outside it.

https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx?skin=Metro

This does not happen with MetroTouch, Silk or Default skin. How do I replicate the same behavior with Metro skin?

Unplanned
Last Updated: 05 Mar 2024 08:47 by ADMIN
PdfViewer throws the JavaScript exception "Right-hand side of 'instanceof' is not an object" when clicking on the search button to search for words.
Unplanned
Last Updated: 30 Jan 2024 08:25 by Chris

We have recently implemented the Signature control into our Web Forms application using the latest version of Telerik UI Controls for Asp.Net Ajax.

We are having an issue where if the signature control isn’t in the main focus when it loads (for example the control is in a tab that isn't initially the main focus) - the signature stroke is distorted.

In addition, when you maximize the signing area - it has the same distorted view.

Unplanned
Last Updated: 29 Jan 2024 16:16 by Wayne
Created by: Wayne
Comments: 3
Category: MultiColumnComboBox
Type: Bug Report
0

(copy of Selection bug MultiColumnComboBox in UI for ASP.NET AJAX | Telerik Forums)

Steps:

1. Go to Telerik Web UI MultiColumnComboBox WebForms MultiColumnComboBox Overview Demo | Telerik UI for ASP.NET AJAX

2. Enter "ha" select some records

3. Hover mouse over any of dropdown records

4. Click out of the dropdown to close it

5. Textbox keeps "ha" but the message below reads that You have selected Thomas Hardy whose ID is AROUT. They are a Sales Representative at Around the Horn however, nothing has been selected.

Is it expected ?
If it's a bug and having a long cycle to fixing bugs could you recommend any workaround?

Completed
Last Updated: 12 Mar 2024 10:11 by ADMIN
Release 2024 Q2
Created by: miksh
Comments: 0
Category: MultiColumnComboBox
Type: Bug Report
0

When search dropdown is open in MultiColumnComboBox and you scroll the page (e.g. by mouse wheel) the dropdown is immediately closed which is quite inconvenient.

Both Combobox and DropDownList keep the dropdown opened when you are scrolling the page.

Could you fix it?
Any temp workaround?

Unplanned
Last Updated: 25 Jan 2024 16:33 by Raul

The issue can be replicated in the OLAP and KPIs Support demo.

Steps to replicate the issue:

  • Add an item to the "Row Fields" by checking the checkbox of the item in the "All Fields" panel
  • Remove the item from the "Row Fields" by unchecking the checkbox of the item in the "All Fields" panel
  • Click the Update button
  • After the PostBack the PivotGrid will display the Item in the "Row Fields" despite it was removed soon after adding it.
Unplanned
Last Updated: 18 Jan 2024 10:32 by Dev
When making a partial PostBack while the Combos are inside a RadAjaxPanel, the components initialize in the reverse order, where the last Combo initializes first, the second to last initializes next, and so on. This way, the Child combos can't access the Parent's values as the parent is not initialized at that time.
Pending Review
Last Updated: 30 Apr 2024 11:43 by ADMIN
Scheduled for 2024 Q3 (7.08.2024)

Hello

I have an ASP.NET Ajax Telerik Solution (site) that has a web site project and a library project.  The solution was developed almost 8 years ago and so far I've been able to upgrade telerik controls  several times without any problem. Now, when I tried to upgrade the Telerik controls using the Upgrade Wizard Project only shows the class library as you can see in the attached picture.

To replicate this beahavior:

1. Create a new Telerik VB Webform Site
2. Add a Class Library Net Framework project to the solution.
3. Add a reference to Telerik.Web.UI to the Class Library project (optional).
4. Save and close solution.
5. Reopen it and run the Telerik Upgrade Wizard Project.

It only shows the Class Library project ...

Completed
Last Updated: 02 Jan 2024 15:04 by ADMIN

When assigning multiple resources and percentages, the first item in list always goes back to 100%.

It saves back to UI correctly but as soon as you leave or refresh page it goes back to 100% on first item and that's what's saved in database.

The online demo has the same code but demo doesn't save at all to test.

See attached screen shots.

Unplanned
Last Updated: 11 Dec 2023 09:41 by Nitin
Created by: Nitin
Comments: 0
Category: TreeMap
Type: Bug Report
0

When both Telerik TreeMap and Kendo UI Heatmap are placed on the same page, the Kendo scripts are failing with the following exception:

Uncaught TypeError: Cannot read properties of undefined (reading '0')

Unplanned
Last Updated: 07 Dec 2023 14:04 by Ray

Steps to replicate the issue:

  • Set the computer's Time Zone to CST (Central Standard Time) which is UTC -6:00.
  • Enable Daylight Saving
  • Open VS and create a new Page with a DatePicker in it (basic settings)
  • Select the date "4/1/2023" and picking the time "2:00 AM" jumps to "3:00 AM"

Important: for the Time Zone changes to have effect, the Visual Studio solution has to be closed/re-opened.

Pending Review
Last Updated: 30 Apr 2024 11:43 by ADMIN
Scheduled for 2024 Q3 (7.08.2024)
Suddenly all my projects tell me to 'Convert to Telerik Web Site' but they all are already are?

All projects are affected. If I try to convert and choose a different skin this seems to affect the installation, but the button 'Convert to Telerik Web Site' is still visible.

Is there a way to fix this?
1 2 3 4 5 6