Unplanned
Last Updated: 13 Sep 2022 21:38 by Jason
Created by: n/a
Comments: 1
Category: Editor
Type: Feature Request
11

Currently, when the user hits enter, the editor adds a p tag (<p></p>). To add a <br> tag in the editor, the user has to press Shift+Enter.

Can we have a property that lets the developer decide what tag to add when the user hits enter?

Duplicated
Last Updated: 16 Jan 2023 14:47 by ADMIN
Created by: Juergen
Comments: 0
Category: Editor
Type: Feature Request
4

Provide inline editing in Editor component like the one supported by the Kendo jQuery Editor:

https://demos.telerik.com/kendo-ui/editor/inline-editing

 

Unplanned
Last Updated: 06 Jun 2022 11:11 by ADMIN
Created by: Matthias
Comments: 1
Category: Editor
Type: Feature Request
3

Hello,

after entering an URL and pressing ENTER, the URL is not converted into a link

(In the Editor Kendo UI jQuery this works)

 

 

 

 

Unplanned
Last Updated: 25 Mar 2022 14:00 by ADMIN
Created by: Anthony
Comments: 1
Category: Editor
Type: Feature Request
0
This is a feature request: To be able to convert the rendered HTML for the editor to/from markdown format.
Declined
Last Updated: 23 Feb 2023 11:09 by ADMIN
Created by: Anthony
Comments: 2
Category: Editor
Type: Feature Request
0

Sometime but not always, the Editor will start to set the style attribute for each and every element, even though they are all the same.

Example Html:

 

<p>
  <span style="color: rgb(53, 53, 53); font-family: &quot;Open Sans&quot;, tahoma, arial, helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: -webkit-left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;">Bedroom One</span>
  <br style="color: rgb(53, 53, 53); font-family: &quot;Open Sans&quot;, tahoma, arial, helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: -webkit-left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">
  <span style="color: rgb(53, 53, 53); font-family: &quot;Open Sans&quot;, tahoma, arial, helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: -webkit-left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;">- Wrap, box and move non-affected contents and small furniture away from the affected area.</span>
  <br style="color: rgb(53, 53, 53); font-family: &quot;Open Sans&quot;, tahoma, arial, helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: -webkit-left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">
  <span style="color: rgb(53, 53, 53); font-family: &quot;Open Sans&quot;, tahoma, arial, helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: -webkit-left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;">- Carryout inventory and dispose of non-restorable contents and furniture.</span>
</p>  

 

How can I avoid this duplication?

This is my current configuration for the Kendo Editor:


 <kendo-editor ctsStyle
          [style.height]="to.height"
          [formControl]="formControl"
          [class.is-valid]="showError"
          [formlyAttributes]="field"
          >

          <kendo-toolbar [overflow]="true">
            <kendo-toolbar-buttongroup>
              <kendo-toolbar-button kendoEditorBoldButton></kendo-toolbar-button>
              <kendo-toolbar-button kendoEditorItalicButton></kendo-toolbar-button>
              <kendo-toolbar-button kendoEditorUnderlineButton></kendo-toolbar-button>
            </kendo-toolbar-buttongroup>
            <kendo-toolbar-dropdownlist kendoEditorFormat></kendo-toolbar-dropdownlist>
            <kendo-toolbar-buttongroup>
              <kendo-toolbar-button kendoEditorAlignLeftButton></kendo-toolbar-button>
              <kendo-toolbar-button kendoEditorAlignCenterButton></kendo-toolbar-button>
              <kendo-toolbar-button kendoEditorAlignRightButton></kendo-toolbar-button>
              <kendo-toolbar-button kendoEditorAlignJustifyButton></kendo-toolbar-button>
            </kendo-toolbar-buttongroup>
            <kendo-toolbar-buttongroup>
              <kendo-toolbar-button kendoEditorInsertUnorderedListButton></kendo-toolbar-button>
              <kendo-toolbar-button kendoEditorInsertOrderedListButton></kendo-toolbar-button>
              <kendo-toolbar-button kendoEditorIndentButton></kendo-toolbar-button>
              <kendo-toolbar-button kendoEditorOutdentButton></kendo-toolbar-button>
            </kendo-toolbar-buttongroup>
          </kendo-toolbar>

        </kendo-editor>

Unplanned
Last Updated: 27 Jan 2022 09:28 by ADMIN
Created by: Kendo UI
Comments: 0
Category: Editor
Type: Feature Request
0

When a list item is aligned to the center or the right, the list item marker remains aligned to the left instead of following the text. (A similar issue occurs when the document direction is RTL.)

Please introduce a feature that ensures the marker follows the item in accordance with its alignment similar to MS Word or Google Docs behavior.

Unplanned
Last Updated: 23 Sep 2022 08:06 by ADMIN
Created by: Kendo UI
Comments: 2
Category: Editor
Type: Feature Request
4

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):

  1. PageView of the rich text documents.
  2. Header & Footer.
  3. Document breaks.
  4. Document layout.
  5. Margin
  6. Ruler.
  7. Tables inside the document to support:
    *Table formatting. Silverlight version supports using format names to change the entire appearance of a table.
    *Merge/Split cells
    *Size to contents

Thank you.

Completed
Last Updated: 26 May 2022 15:35 by ADMIN

Steps to reproduce:

  1. Go to https://www.telerik.com/kendo-angular-ui/components/editor/tools/
  2. Choose any font-size parameter in the "Select font size" dropdown
  3. Open the dropdown again

Actual result: current value doesn't have selected styles in the dropdown

Expected result: current value in the dropdown is highlighted. Please see an example below:

Completed
Last Updated: 15 Feb 2022 10:48 by ADMIN
Created by: Harikrishna
Comments: 1
Category: Editor
Type: Feature Request
2
Provide an option to select a cell, row, or the whole table in Kendo Editor table.
Unplanned
Last Updated: 27 Aug 2021 08:33 by ADMIN
Created by: Harikrishna
Comments: 0
Category: Editor
Type: Feature Request
2
Provide a built-in option to define cell alignment.
Declined
Last Updated: 31 Aug 2023 15:10 by ADMIN
Created by: Harikrishna
Comments: 1
Category: Editor
Type: Feature Request
1
Provide a built-in option to change the width of the column dynamically based on the content.
Completed
Last Updated: 29 Jul 2021 12:19 by ADMIN
Created by: Juliette
Comments: 1
Category: Editor
Type: Bug Report
0

Sample code:

<div class="form-group">
   <kendo-editor *ngIf="!formDisabled" [(ngModel)]="securityplan.dataFlow" id="dataFlow" name="dataFlow" style="height: 250px; width: 100%;">. 
   </kendo-editor>
</div>

When you click into the body of the editor, "before emit" is console logged. 

 

Declined
Last Updated: 31 Aug 2023 15:02 by ADMIN

Currently, the kendoEditorCreateLinkButton does not provide a way to specify the Dialog container, as the following article demonstrates:

https://www.telerik.com/kendo-angular-ui/components/dialogs/dialog/service/#toc-specifying-the-dialog-container

Please consider providing a built-in appendTo option to the link button directive. This will help to determine where the Dialog will be appended when the Editor is used within a kendoGridEditTemplate/kendoGridCellTemplate:

Using kendoGridEditTemplate:

https://stackblitz.com/edit/angular-yddl1n-inbwen

Using kendoGridCellTemplate:

https://stackblitz.com/edit/angular-yddl1n-t3afde

 

Declined
Last Updated: 02 Aug 2023 15:10 by ADMIN
Created by: n/a
Comments: 1
Category: Editor
Type: Feature Request
2

Limitation:

  • Not able to copy and apply identical formatting to other parts of the text, currently only clean formatting is available

Feedback: To cater for Format Painter similar to Microsoft Word to allow automatic apply of formatting
(Similar feature is found in JQuery Kendo Editor) 

Unplanned
Last Updated: 24 Jun 2021 08:40 by ADMIN
Created by: n/a
Comments: 1
Category: Editor
Type: Feature Request
3

Limitation:

  • Line spacing between text/paragraph not able to adjust, currently default Kendo Editor has quite big space in between bullets.

Feedback: To cater for Line spacing option which allow user to adjust line spacing between bullets.

                 
Unplanned
Last Updated: 24 Jun 2021 08:40 by ADMIN
Created by: n/a
Comments: 0
Category: Editor
Type: Feature Request
2

Limitation:

  • Font size in Kendo Editor only supports PX (pixel) values. 
  • To customize the font size to show in PT (point) format in Editor, manual conversion has to be done using the below formula. However, the font size is not exactly the same as Microsoft word PT measurement.
    • 1 Point [pt] =  ~ 1.33 Pixel [px] 

Feedback: Font size dropdown can be provided for PT (Point) option as well as to follow like the Microsoft Word font size.

   
Completed
Last Updated: 11 May 2022 10:16 by ADMIN
Created by: Avinash
Comments: 1
Category: Editor
Type: Feature Request
5
Able to resize image using mouse select rather than from the image toolbar.
Unplanned
Last Updated: 18 Aug 2022 12:18 by Babu
Created by: Neil
Comments: 2
Category: Editor
Type: Feature Request
4

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

Declined
Last Updated: 18 Jul 2023 15:34 by ADMIN
Created by: Lynn
Comments: 1
Category: Editor
Type: Feature Request
1
Provide a built-in code snippet tool to enter something like JSON/HTML which can format well (when I press enter, it will indent automatically for me).
Declined
Last Updated: 18 Jul 2023 15:15 by ADMIN
Created by: Andre Beauchamp
Comments: 2
Category: Editor
Type: Feature Request
2

In order to display kendo dialogs correctly inside an ionic app, kendo components need to be set into a specific container to display correctly fixed dialogs in iOS.

Many components such as the dropdownlist that uses a dialog internally will expose an 'appendTo' option inside a popupSettings input parameter.

I would like to have the same feature on the editor component to allow its dialogs to be displayed correctly on iOS devices.

I could extend this request to pretty much any components that uses a dialog/window/popup.

Thanks!