Completed
Last Updated: 01 Nov 2022 14:48 by ADMIN
Release 2022.R2.SP1
Created by: Amitesh
Comments: 3
Category: Button
Type: Feature Request
8
It will be good to have a dropdown button in the Kendo suit.
Completed
Last Updated: 13 Jun 2022 07:48 by ADMIN
Release 2022.R2.SP.next

Bug report

The text of a Button a cannot be modified through $scope using AngularJS.

Regression introduced with 2022.1.119

Reproduction of the problem

  1. Open the Dojo example - https://dojo.telerik.com/@martin.tabakov@progress.com/uzEdoger/2

Current behavior

The buttonName value is not displayed as the Button's text

Expected/desired behavior

The buttonName value should be displayed as text for the Button.

Environment

  • Kendo UI version: 2022.1.119
  • Browser: [all]
Completed
Last Updated: 09 Feb 2022 12:20 by ADMIN
Release 2022.R1.SP.next

Typescript d.ts:


    interface ButtonOptions {
        name?: string | undefined;
        enable?: boolean | undefined;
        icon?: string | undefined;
        iconClass?: string | undefined;
        imageUrl?: string | undefined;
        spriteCssClass?: string | undefined;
        click?(e: ButtonClickEvent): void;
    }

 

https://docs.telerik.com/kendo-ui/api/javascript/ui/button/configuration/badge

Completed
Last Updated: 13 Jan 2020 09:19 by ADMIN
Release R1 2020
Created by: Phill
Comments: 0
Category: Button
Type: Bug Report
2

Bug report

When you click and hold on the Button, and then drag outside, the Button remains highlighted.

This is a regression in version 2019.1.115.

Reproduction of the problem

Open this Dojo example. Click and hold the Button, and then drag to the right.

Current behavior

The Button remains highlighted, and the k-state-active class is not removed.

Expected/desired behavior

The Button should not be highlighted if the mouse cursor is not on the button on mouseup.

Workaround in this Dojo.

Environment

  • Kendo UI version: 2019.1.115
  • Browser: [all]
Completed
Last Updated: 14 Jun 2019 14:49 by ADMIN
Release 2019.R2.SP.Next
Created by: Wangtae
Comments: 0
Category: Button
Type: Bug Report
1

Bug report

Default and primary buttons have no shadow in normal state in the LESS Material theme.

Reproduction of the problem

Demo.

Current behavior

Expected/desired behavior

Environment

  • Kendo UI version: 2019.2.514
  • jQuery version: x.y
  • Browser: [all]
Completed
Last Updated: 18 Mar 2019 15:00 by ADMIN

After updating to the latest version of Kendo UI for jQuery we noticed that the button disabled style appears to be broken.

 

We were able to reproduce the issue using the Dojo.

The steps to reproduce are very simple.

  1. Open the DoJo
  2. Between the <body> tags place the code below.
  3. Select "Kendo UI 2019 R1" for the Library
  4. Run the project and click the Disable button.  Notice that the edit box is styled as disabled, but the button is not, but looks enabled, yet is not clickable.
  5. Now switch to the previously released library "Kendo UI 2018 R3 SP1"
  6. Click run and click the Disable button.  Notice that both the edit box and button appear and act disabled.

 

 

<! Code to put in between tags >

<div id="view">

  <input type="text" data-bind="value: name, disabled: isNameDisabled" />
  <button data-bind="click: disableInput, disabled: isNameDisabled" class="k-button">Disable</button>

<script>
var viewModel = kendo.observable({
    isNameDisabled: false,
    name: "John Doe",
    disableInput: function() {
        this.set("isNameDisabled", true);
    }
});

kendo.bind($("#view"), viewModel);
</script>
</div>