With the jquery control, I could create a div as a KendoEditor control. If I do this the toolbar used to be a floating toolbar and appear when I select some text in the editor (as opposed to always appear on the top when I create a kendoeditor on a textarea):
https://demos.telerik.com/kendo-ui/editor/inline-editing
Provide a built-in Inline Editor for Angular version.
I'm having trouble with having sub-list items. I thought I'd be able to just use the indent increase toolbar button or the Tab key to create a sub-list item but it doesn't seem to work as expected. I'm not able to do this in the demo of the editor features here even: https://www.telerik.com/kendo-angular-ui/components/editor/
E.g.
- Level 1
- Level 2
- Level 2
- Level 3 etc
Hi Team,
It will be a good addition to the Editor component if the following functionality options are added related to document processing(MS Word for as an example):
Thank you.
Provide inline editing in Editor component like the one supported by the Kendo jQuery Editor:
https://demos.telerik.com/kendo-ui/editor/inline-editing
Currently, the editor controls the disabled state of the control types, but it would be a good feature to have for the developers to manually handle the state by using the disabled property for the control types.
Provide an option to drag the bottom right corner of the Editor in order to change the height of the Editor manually as the Kendo jQuery Editor.
Limitation:
Feedback: To cater for Line spacing option which allow user to adjust line spacing between bullets.
Limitation:
Feedback: To cater for Format Painter similar to Microsoft Word to allow automatic apply of formatting
(Similar feature is found in JQuery Kendo Editor)
Hello,
after entering an URL and pressing ENTER, the URL is not converted into a link
(In the Editor Kendo UI jQuery this works)
It would be a good feature to have a popup open over the image when the user clicks it, providing the option to resize by entering dimensions, similar to when adding the image to the editor.
Please provide a template for customizing the value appearance of the DropDownList control types in the toolbar of the Editor, similar to the one available for the default DropDownList component:
At present, the only approach that can be used for configuring a value template is by implementing a custom DropDownList tool in the toolbar of the Editor:
If you copy paste a hierarchical numbered bullet list from Microsoft Word into the Editor, it will initially appear correct.
However, if you then attempt to add a new bullet by adding a newline, there will not be a new bullet with the correct number added.
Instead, it will add a new line. See the attached screenshot for clarification.
Support hierarchical bullet lists pasted from Microsoft Word in Kendo for Angular Editor component.
When I put the 'Insert File' and 'Insert Link' in different kendo-toolbars, the later does not enable when text is selected.
Please refer the example for repro:
https://stackblitz.com/edit/angular-r6nzmn-dymdpz
Please provide support for multiple <kendo-toolbar> components.
Hi,
We want to implement an IntelliSense like feature with Editor, for example, if user types @ a list of predefined items show up and an item can be inserted there.
Thanks
Haroon.
I would like to have the possibility to modify the pasted content before it is inserted by providing a callback function. This function would be called with the content after Kendo's internal cleanup and the cleanup I specified through the other options has run.
It would look like this:
@Component({
selector: 'my-app',
template: `
<kendo-editor [pasteCleanupSettings]="pasteCleanupSettings"></kendo-editor>
`
})
export class AppComponent {
public pasteCleanupSettings = {
// other options...
custom: (input: string) => {
return '<h1>I can do anything I want in here</h1>' + input;
}
}
}
Basically I want the same behavior as the jQuery editor provides through pasteCleanup.custom: https://docs.telerik.com/kendo-ui/api/javascript/ui/editor/configuration/pastecleanup#pastecleanupcustom
In other kendo components, The Editor can be resized setting the [resizable] property. This did not work for kendo-editor.
Please provide resizable option for Kendo Angular Editor