Questions tagged [kendo-editor]

The Kendo Editor is a Kendo widget that allows users to create rich text content by means of a WYSIWYG interface. The generated widget value is an XHTML markup.

The Editor allows users to create rich text content by means of a WYSIWYG interface. The generated widget value is an XHTML markup.


###Related tags

99 questions
7
votes
5 answers

Trim   values in javascript

I am trying to trim the text which I get from kendo editor like this. var html = "  T  "; // This sample text I get from Kendo editor console.log("Actual :" + html + ":"); var text = ""; try { …
PSR
  • 875
  • 2
  • 13
  • 37
7
votes
4 answers

I want to display only 100 characters in Kendo Grid

Ok, I don't really have a better title, but here's the thing. I just had a requirement for a change in my kendo grid. Here's a picture of it. And here's the code. @(Html.Kendo().Grid() .Name("Grid") .Columns(columns…
Rui Martins
  • 2,164
  • 7
  • 33
  • 52
6
votes
3 answers

kendo ui imagebrowser default image folder

I have used this code to try to produce an image browser. http://www.telerik.com/forums/imagebrowser-with-images-from-database I don't get where it gets the folder image from? I found an image with the default folder on the image here:…
Daniel Gustafsson
  • 1,725
  • 7
  • 37
  • 78
5
votes
1 answer

How to add Custom tools to kendo editor

How can I add Custom tools to kendo editor toolbar? I want to add spell checker, Media manager and Cut,Copy , Paste, and cut from word, copy from word and some more tools also. I am using Kendo editor in MVC application.
vijesh
  • 1,115
  • 1
  • 11
  • 27
4
votes
1 answer

Setting Default Font Family for kendo-angular-editor

How can I set default font to Roboto of the kendo-editor in Angular.
4
votes
2 answers

How to disable AngularJS Kendo UI Editor

I have tried using k-content-editable and well as just the generic data-ng-disabled but neither of these worked. Looking at the documentation it's not even clear to me there is a way to disable the control.
Robert Kaucher
  • 1,841
  • 3
  • 22
  • 44
3
votes
1 answer

Kendo UI Editor - Change default colors of font color picker and background color picker

I am using the Kendo UI Editor and I want to choose which color will appear in the font and background color palettes. Or another alternative is letting the user choose from a custom color picker. I found examples on forums, but they all use older…
3
votes
1 answer

Open kendo editor on hover also

I have Kendo grid with dropdowns, datepicker editor. It works fine except for the dropdown/datepicker editor open when i click on the block. Can there be a way so that the block be converted into editor form(datePicker/dropdown) on Hover…
Rajdeep
  • 788
  • 7
  • 26
3
votes
1 answer

Making Kendo Editor Readonly

I have a Kendo Editor defined as below: @(Html.Kendo().Editor() .Name("editor") .Tag("div") .Tools(tools => tools .Clear() .Bold().Italic().Underline().Strikethrough() …
Kristy
  • 279
  • 6
  • 18
2
votes
2 answers

Kendo Angular Editor setHTML: Insert HTML Content at specific position or after cursor

The available command setHTML replaces the existing content. Is there any way to insert HTML content at specific position as insertText.
Ganesh Matkam
  • 368
  • 1
  • 15
2
votes
1 answer

Get contents from Kendo Editor in rich text format

I am trying to send data from the kendo editor in an email but the email is displaying html tags. I believe the editor's content is Html, thus, by design its value() method also returns Html. I am struggling to figure out how to get the text from…
SallyA
  • 57
  • 1
  • 6
2
votes
1 answer

Kendo UI Angular2/4 rich text editor

Can anyone provide pointers on how to integrate jQuery component KendoEditor in Angular4 application? I have already integrated jQuery component Splitter control but not sure what is the best way to integrate KendoEditor. It is unfortunate that not…
RinkuK
  • 21
  • 5
2
votes
1 answer

Kendo editor with ImageBrowser using MVVM doesn't open image browser dialog

I have a Kendo Editor widget configured using MVVM and I am trying to add Image Browser to it, however clicking on the insertImage tool opens the default dialog (asking for a URL) instead of the image gallery browser. Here's my widget…
Vesselin Obreshkov
  • 1,087
  • 11
  • 26
2
votes
1 answer

Kendo Editor + AngularJS imageBrowser & fileBrowser

Can anyone tell me how i can add imageBrowser and fileBrowser to Kendo Editor using angular js? currently using jQuery implementation is: $("#editor").kendoEditor({ tools: [ "insertImage", "insertFile" ], imageBrowser: { …
Aqdas
  • 868
  • 4
  • 16
  • 57
2
votes
1 answer

Kendo UI Editor Events in Angularjs

How do I get the event properties from the events in Kendo UI Editor? I've taken the code from the KendoDemo download and edited it a bit to get the events for k-on-change and k-on-keydown. The events are described here.
Ralf de Kleine
  • 11,464
  • 5
  • 45
  • 87
1
2 3 4 5 6 7