Currently we see no option to insert image in kendo editor by browsing the same from user's local system.
Could you please add this feature or let us know if there is already some way to achieve the same with existing editor we have for angular.
I want to get selected text from the Kendo Angular editor and I see no function similar to what we have in Kendo AngularJs Editor like GetRange, GetSelection
if editor recive a value like '<span class="platzhalter">Empfaenger_Debitor</span>'
by rendering console show this error
core.js:15724 ERROR TypeError: Cannot read property 'split' of nullI see that in Kendo UI for JQuery it is present, but for Angular 2+ there is no such functionality in the example.
There is no way to change size for columns,rows and table for table.
1) Go to https://www.telerik.com/kendo-angular-ui/components/editor/tools/
2) Add table to editor
3) Click on table
4) No way to change size
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
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
Please could you provide a built-in option ot insert alpha ordered list.
For the angular kendo editor, when the user adds an ordered list and indents lines in the list, the numbering uses numbers for all levels. Is it possible, without too much work, to have the first level be numbers, the second level be letters, the third level be roman numerals, etc like word would do?
So instead of
it would be
1. one
a. two
i. three
If the solution is non-trivial or very custom, I would not do it. If that is the case, I do not need sample code.
Thanks,
Bob
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.
Please add the following features to the Editor in Kendo UI for Angular 2+:
- Table Wizard
- Split cell row
- Split cell column
- Merge cell row
- Merge cell column
Note: These features exist i the Kendo UI for ASP.NET MVC version of the editor.
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.
We tried to add link to an image in the stack blitz provided by the support team. But it didn't work.
Later we were informed that this feature was not supported.
Here is our updated stackblitz link.
This is what we would like to have in the editor:
Add image to the existing content. And add a link to the newly added image to open in the new tab.
Thanks.
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.
Currently all text is wrapped inside a P tag, which is very inconvenient in many cases. Couple of examples:
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.
Steps to reproduce:
Create fresh angular 9+ project : ng new angular9-kendo-editor-test
run cmd to add editor module: ng add @progress/kendo-angular-editor
Add config to serve es5 generated scripts so IE will work: https://medium.com/better-programming/how-to-fix-your-angular-app-when-its-not-working-in-ie11-eb24cb6d9920
run cmd to serve es5 config: ng serve --configuration es5
Open IE and browse to http://localhost:4200
Open developer tools, observe there is a script error
Comment out the EditorModule import in app.module.ts and you can see the app now works...
When i refresh page wich contains Editor i give error - Cannot read property 'createElement' of null wheb i refresh page
i try hide edtor while not initilized, content initilized, this dont help