Completed
Last Updated: 13 Oct 2020 11:09 by ADMIN
Release 2020.R3.SP.next

Bug report

Regression introduced in R2 2019.

Reproduction of the problem

Dojo example.

  1. Focus the empty line between the two lines with text
  2. Press Backspace key

Current behavior

The line is not deleted

Expected/desired behavior

The line is deleted

Another scenario:

  1. Click at the beginning of the third line (before "Du").
  2. Press Backspace key
  3. Press Delete key.

Delete has no effect if Backspace is pressed before that. If you continue pressing Delete, it will work, but once you press Backspace, the next time you press Delete, it won't delete the character that follows the cursor position.

Environment

  • Kendo UI version: 2020.2.617
  • jQuery version: x.y
  • Browser: [all]
Unplanned
Last Updated: 19 Jun 2020 08:05 by Yngve
Created by: Yngve
Comments: 0
Category: Editor
Type: Bug Report
2

Bug report

When a table is created through the table wizard and cellspacing is set to 0, this value is ignored and the table is created with no cellspacing value. 0 is a valid value and it affects the appearance of the table, so it should not be equivalent to not setting cellspacing.

Reproduction of the problem

Reproducible in the demos.

  1. Use the table wizard.
  2. Set 0 as cellspacing value.
  3. Create the table.
  4. Inspect the table in the browser's dev tools.

Current behavior

The table has no cellspacing attribute.

Expected/desired behavior

The table has cellspacing set to 0.

Environment

  • Kendo UI version: 2020.2.617
  • jQuery version: x.y
  • Browser: [all ]
Unplanned
Last Updated: 13 Apr 2020 09:12 by ADMIN
Created by: Philippe
Comments: 1
Category: Editor
Type: Feature Request
2

Hello there,

 

I'm trying to use both snippets (to make a shortcode for our users to add templated Links) and pasteCleanup option (to prevent any style to be import from a copy paste) but it seems like the pasteCleanUp option is preventing my html tags from snippets to be added.

 

Here my code :


@(Html.Kendo().Editor()
      .Name(ViewData.TemplateInfo.HtmlFieldPrefix)
      .HtmlAttributes(new { style = ViewData["style"], @class = ViewData["class"] })
      .Resizable(resizable => resizable.Content(true).Toolbar(true))
      .Value(@Model)
      .Encode(false)
      .PasteCleanup(paste => paste.All(true))
      .Tools(tools => tools
                .Clear()
                .Bold().Italic().Underline().Strikethrough()
                .JustifyLeft().JustifyCenter().JustifyRight().JustifyFull()
                .CreateLink().Unlink()
                .TableEditing()
                .Snippets(snippets =>
                    {
                    snippets.Add("Test", " <a class='testclass' href='www.test.com'>TestLink</a> ");
                })
                .FontColor().BackColor()
                .CleanFormatting()
                .ViewHtml()
                )

If I don't remove the line

.PasteCleanup(paste => paste.All(true))

All I can get from my snippet is "TestLink" instead of "

 

<a class='testclass' href='www.test.com'>TestLink</a>

 

But maybe i'm doing this wrong ?

 

Thx a lot.

 

Cordialy

Unplanned
Last Updated: 27 Feb 2020 12:47 by ADMIN
Created by: Joe
Comments: 1
Category: Editor
Type: Feature Request
2

I recently added the editor's table insert/edit feature to a project. My customer immediately showed frustration that you can only apply styles and classes to the entire table or one cell at a time. 

It would be great if we could:

  • Select more than one cell, then apply style and classes.
  • Select one or more rows, then apply style and classes.
  • Select one or more columns, then apply style and classes.

Thanks!

Completed
Last Updated: 21 Jan 2020 12:49 by ADMIN

Bug report

Regression introduced in v2019.2.619.

Reproduction of the problem

Dojo example.

  1. Copy some text in the clipboard.
  2. Right-click the content area of the Editor.

Current behavior

The "Paste" option is missing from the contextmenu. The only way to make it appear is to right-click the top left corner of the Editor's content area.

Expected/desired behavior

The "Paste" option is present in the contextmenu, regardless of where exactly in the Editor's content area the right-click is performed.

Environment

  • Kendo UI version: 2020.1.114
  • jQuery version: x.y
  • Browser: [all]
Unplanned
Last Updated: 08 Oct 2019 09:23 by ADMIN

Hello,

On MAC, command+c cut instead of copy when selected texts are in a table. To duplicate, please follow these steps.

1. Go here: https://demos.telerik.com/aspnet-mvc/editor

2. Insert a new table.

3. Add some text into the table.

4. Select texts in the table.

5. Press command+c on MAC.

 

Please advise.

Thank you.

Unplanned
Last Updated: 05 Aug 2019 08:08 by ADMIN
This way a read-only Editor could be initialized.
Unplanned
Last Updated: 21 Mar 2019 15:26 by ADMIN
Created by: Craig
Comments: 1
Category: Editor
Type: Feature Request
0

We are using the Kendo Editor control and need to take actions based on the onChange event firing.  We have found that some formatting changes, such as changing the column width in a table doesn't trigger the onChange event.

Is there a work around for this issue.  It can be reproduced using your editor event demo here

1 2