kendo-ui-core icon indicating copy to clipboard operation
kendo-ui-core copied to clipboard

The TaskBoard throws a js exception when using an Editor component for editing a field

Open IvanDanchev opened this issue 11 months ago • 0 comments

Bug report

The issue is reproducible when the Editor is used as an item editor:

editable: {
  form: {
    buttonsTemplate: "",
    items: [{
      field: "Title",
      label: "Title:"
    }, {
      field: "Description",
      label: "Description:",
      **editor: "Editor"**
    }]
  }
}

It is not reproducible with editor "TextBox" or "TextArea"

Reproduction of the problem

  1. Run this dojo example: https://dojo.telerik.com/KeIjSJgr
  2. Click the menu button in one of the cards and select "Edit card" from the dropdown

Current behavior

The following js exception is thrown: kendo.all.js:131959 Uncaught TypeError: Cannot read properties of null (reading 'open')

Expected/desired behavior

No exception is thrown and the Editor can be used to edit the field value.

Environment

  • Kendo UI version: 2024.3.1015
  • jQuery version: x.y
  • Browser: [all]

IvanDanchev avatar Nov 01 '24 16:11 IvanDanchev