Completed
Last Updated: 07 Feb 2024 12:04 by ADMIN
Release 2024 Q2
Lambe
Created on: 10 Jul 2023 08:38
Category: TaskBoard
Type: Bug Report
0
The first editor in TaskBoard card edit popup is not focused by default

Bug report

Reproduction of the problem

https://dojo.telerik.com/ORahihiZ/2

  1. Edit a card

Current behavior

The second editor (NumericTextBox) in the popup is focused by default.

Expected/desired behavior

Since the form's focusFirst option is enabled, the first editor (textarea) in the popup should be focused by default.

As a workaround, the textarea can be focused in the editCard event handler:

function onEditCard(e) {
    setTimeout(function() {
        $(".k-taskboard-pane-content textarea").focus();
    }, 100)
}

Environment

  • Kendo UI version: 2023.2.306
  • jQuery version: x.y
  • Browser: [all]
0 comments