Unplanned
Last Updated: 09 Mar 2026 06:58 by Rajendra
Created by: Rajendra
Comments: 0
Category: Checkbox
Type: Feature Request
1
We are using Telerik ASP.NET MVC along with jQuery. Our requirement is to implement ADA-compliant tooltips. Previously, we were using the title attribute for Kendo controls to display tooltips. However, this approach is not ADA-compliant, as screen readers do not consistently read the title attribute.

We have tooltips for various controls, primarily TextBox and CheckBox, which are rendered via shared .cshtml views. We need an ASP.NET MVC solution to render Kendo controls with tooltips that:

Appear on hover of the control

Are accessible to screen readers

Minimize custom JavaScript logic

Essentially, the goal is to implement accessible tooltips for Kendo controls in a maintainable and standards-compliant way.

Is there another way we can implement this purely through a Kendo control only? For example, is there a Kendo property or configuration that could render the required span with the attribute we need? Since Kendo is supposed to be ADA compliant, ideally we shouldn't need additional custom code for a tooltip that can be read by screen readers. It would be preferable if this could be achieved through a built-in Kendo property or flag during rendering.
Completed
Last Updated: 20 Nov 2025 08:07 by ADMIN
Release 2026 Q1 (Feb)
Created by: Paul
Comments: 2
Category: Checkbox
Type: Bug Report
2

Bug report

When a CheckBox is set to enabled: false, the input is missing the k-disabled class. Thus, the checkbox does not have disabled styles applied.

Reproduction of the problem

  1. Open the Dojo - https://dojo.telerik.com/KFntNMfA

The desired rendering of the component - https://github.com/telerik/kendo-themes/blob/e1dbf1a74980bd82718f40085f6a8e21922f1897/tests/checkbox/checkbox-states.html#L44

Current behavior

The first checkbox is enabled and the second is disabled, but they appear the same.

Expected/desired behavior

The input should have the k-disabled class when the checkbox is disabled

Workaround

 <style>
        .k-checkbox:disabled{
          opacity: 0.6
        }
      </style>

Dojo - https://dojo.telerik.com/ztwIGjBO

Environment

  • Kendo UI version: 2025.3.1002
  • Browser: [all ]
Unplanned
Last Updated: 26 Sep 2023 09:45 by Shaowei
Created by: Shaowei
Comments: 0
Category: Checkbox
Type: Bug Report
0

Bug report

When used in a regular HTML form, the CheckBox doesn't get reset by the Reset button.

Workaround: Consider using the Kendo Form instead of a regular HTML form.

Reproduction of the problem

  1. Open this Dojo example - https://dojo.telerik.com/ureSOHoB/5
  2. Click the Reset button

Current behavior

The CheckBoxes don't reset when clicking the Reset button

Expected/desired behavior

The CheckBoxes should reset when clicking the Reset Button

Environment

  • Kendo UI version: 2023.2.829
  • Browser: [all]
Unplanned
Last Updated: 13 Jan 2023 10:31 by ADMIN
The Label Element of Checkbox and RadioButton should be a property of the widget; all other kendo controls have properties to access the elements that are created by the widgets initialization code.
Unplanned
Last Updated: 09 Jan 2023 11:08 by Akesh Gupta
Created by: Akesh Gupta
Comments: 0
Category: Checkbox
Type: Feature Request
0

Currently when a Checkbox is destroyed its label remains on the page and should be removed separately. - (Dojo).

I would like to be able to destroy the label together with the Checkbox that has created it.