Alternatively to step 2, click the first justify tool and then consecutively click the other 3 justify buttons.
The Editor's toolbar does not close.
The Editor toolbar closes
The dropdown opens and the Editor hides.
The dropdown opens and the Editor remains open.
Reproducible in Chrome and IE11. In Firefox highlighting a row and applying formatting (bold) applies it only to the first cell on the row.
strong tags are added under the tr element
strong tags are added only under the td elements.
When in an Editor, the TableEditing()
API configuration creates an instance of 2 buttons - Create a Table button, and Table Wizard button (which doesn't have any functionality). This issue occurs when we use newer versions after 2023.2.606. For example:
@(Html.Kendo().Editor()
.Name("editor")
.Tools(tools => tools.Clear().TableEditing())
...
)
TableEditing()
API configuration creates instances of 2 buttons, one of which has no functionality.
TableEditing()
API configuration should create an instance of only 1 button
https://netcorerepl.telerik.com/wRaCuPlS39KaFyIS25
Is it possible to allow the integration of the Template component in the Template() option of the CustomTemplate() configuration in the Editor's Toolbar?
For example:
@(Html.Kendo().Editor()
.Name("editor")
.Tools(tools => tools
.Clear()
.CustomTemplate(x => x.Name("customButton").Template(
Html.Kendo().Template()
.AddComponent(c => c.Button()
.Name("myButton")
.Events(ev => ev.Click("onExecute"))
)
))
)
)
I have many pictures to show. The ImageBrowser-Control has some kind of support for lazy loading. The problem is just that the thumbnail of items scrolling into the viewport are not loaded.
Regression introduced in R2 2020 SP1.
Reproducible with the LESS themes in the demos.
The textarea occupies only small part of the popup's width.
The textarea uses all of the popup's width.
Workaround:
.k-viewhtml-dialog .k-editor-textarea {
width: auto;
}
Regression introduced in R3 2020 SP2. Could be related to #4996
.BackColor(config => config.Palette(new string[] { "#ffffff", "#ffff00", "#db9791" }))
.FontColor(config => config.Palette(new string[] { "#ffffff", "#ffff00", "#db9791" }))
Clicking on the tools displays an HSV popup, instead of the specified palette.
A palette is displayed.
Regression introduced in R2 2019.
Dojo example.
The line is not deleted
The line is deleted
Another scenario:
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.
Regression introduced in v2019.2.619.
Dojo example.
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.
The "Paste" option is present in the contextmenu, regardless of where exactly in the Editor's content area the right-click is performed.