Declined
Last Updated: 11 Jul 2023 15:00 by ADMIN
Created by: Bob
Comments: 2
Category: Kendo UI for Angular
Type: Feature Request
1

There is a dearth of browser inline editors for Word documents.  It appears that the only viable solution currently out there is to implement WOPI and this standard is complex, poorly documented and extremely difficult to implement.  There are some alternatives out there:

The former is incredibly expensive because it charges per API call (effectively charging each time a document is opened or edited) and the latter is overly complex and for Linux users.

A further alternative is syncfusion's document editor.  This editor is good but loses formatting.

Surely it would be possible to unravel Word's open xml format and load it into a modified version of the Rich text Editor?

 

Unplanned
Last Updated: 10 Jan 2024 07:53 by ADMIN
Created by: Bob
Comments: 6
Category: Kendo UI for Angular
Type: Feature Request
19

We could really do with a file explorer, I believe this is already available in your JQuery suite and is planned for .NET Core.

Syncfusion have already implemented an angular file manager which can use Azure Blob Storage as a backend (though other backends are also available).

In fact the syncfusion file explorer is based on your own component.  After some digging around looking for a similar solution I found their design document for the component which directly refers to the Telerik's own components.  You may want to consider contacting syncfusion on this because it appears to me that they may have breached your copyright. 

 

 

Duplicated
Last Updated: 14 Jun 2021 14:02 by ADMIN
Unplanned
Last Updated: 25 Nov 2019 10:16 by ADMIN

Hello,

it would be nice to have a reusable Virtualization-Container-Component so that it is possible to have a list of many custom components without performance issues.

The Grid, DropDowns and Calendar-Components already use some kind of virtualization component which is currently not for public use.
I guess something like that, but defined in a generic way (so that it is possible to insert any component) would be sufficient.
It should also be possible to have child elements with different sizes.

Completed
Last Updated: 18 May 2021 15:38 by ADMIN
Created by: Dzmitry
Comments: 1
Category: Kendo UI for Angular
Type: Bug Report
0

https://stackblitz.com/edit/angular-dxhzju

 

1. Change scheduler timezone in combobox

2. Change view selector to "Month", for example.

Result: provided colors from resources aren't appied anymore.

Completed
Last Updated: 02 Jun 2022 13:46 by ADMIN
Created by: Dzmitry
Comments: 2
Category: Kendo UI for Angular
Type: Bug Report
0

https://angular-dxhzju.stackblitz.io

a. In "Show business hours" mode open event creating dialog and set start-end time that is outside of business hours specified, e.g. 07.00-07.30 when business hours are 08.00-20.00.

b. Press Save buttom.

c. Switch to "Show full day" mode.

Actual result - event is not shown.

Event appears only after, e.g. , pressing next arrow button and then pressing back arrow button.

 

 

 

 

 

Declined
Last Updated: 23 Feb 2023 06:48 by ADMIN
Created by: Umesh
Comments: 2
Category: Kendo UI for Angular
Type: Feature Request
0

Hi,

 

Need a circle packing bubble chart. In my application, I required to use one use case.

Please refer attached screenshot.

 

FYI We are using the below dependencies in our project.

"@angular/animations": "7.2.3",
"@angular/cdk": "7.3.0",
"@angular/common": "7.2.3",
"@angular/compiler": "7.2.3",
"@angular/core": "7.2.3",
"@angular/forms": "7.2.3",
"@angular/http": "7.2.3",
"@angular/material": "7.3.0",
"@angular/platform-browser": "7.2.3",
"@angular/platform-browser-dynamic": "7.2.3",
"@angular/platform-server": "7.2.3",
"@angular/router": "7.2.3",
"@ng-bootstrap/ng-bootstrap": "4.2.2",
"@progress/kendo-angular-common": "1.1.0",
"@progress/kendo-angular-buttons": "5.0.0",
"@progress/kendo-angular-charts": "4.1.0",
"@progress/kendo-angular-dateinputs": "4.0.1",
"@progress/kendo-angular-dropdowns": "4.0.0",
"@progress/kendo-angular-excel-export": "3.0.1",
"@progress/kendo-angular-gauges": "3.0.0",
"@progress/kendo-angular-grid": "4.2.0",
"@progress/kendo-angular-inputs": "6.1.1",
"@progress/kendo-angular-intl": "2.0.0",
"@progress/kendo-angular-l10n": "2.0.0",
"@progress/kendo-angular-pdf-export": "2.0.0",
"@progress/kendo-angular-popup": "3.0.1",
"@progress/kendo-angular-scrollview": "3.0.0",
"@progress/kendo-angular-treeview": "2.5.0",
"@progress/kendo-angular-upload": "5.1.0",
"@progress/kendo-data-query": "1.5.0",
"@progress/kendo-drawing": "1.5.12",
"@progress/kendo-theme-default": "3.2.0",
"@progress/kendo-angular-layout": "4.0.0",
"@progress/kendo-ui": "2019.1.130",
Declined
Last Updated: 23 Feb 2023 11:11 by ADMIN
Created by: Aidan
Comments: 2
Category: Kendo UI for Angular
Type: Bug Report
1

Hello,

 

The PDF export component does not seem to handle tables that are in the editor content. In the Stackblitz example I included, which is based off of the PDF export demo under the Editor component, the table borders do not show in the editor and in the exported PDF. In my own practice, any editor version 8 and above will not export the tables to PDF. In fact, the exported PDF is blank no matter what is in the editor. Here is what I am using. When I change the editor version to 0.7.0, the PDF export works (albeit without table support). I would like to be able to export the tables that inside of the editor's content to PDF. This problem only started happening after I updated my editor to versions 0.8.0 and above.  


<kendo-pdf-export #pdf paperSize="Letter" margin="1cm" [scale]="scale">
                    <kendo-editor #editor iframe="false" style="align-self: auto; padding: 20px; height: 90vh; width: 24cm; margin: 0 auto;" [(value)]="value" 
                    (dragover)="onDragOver(event)" (drop)="onDrop(event)">
                      <kendo-toolbar>
                        <kendo-toolbar-buttongroup>
                          <kendo-toolbar-button kendoEditorUndoButton></kendo-toolbar-button>
                          <kendo-toolbar-button kendoEditorRedoButton></kendo-toolbar-button>
                        </kendo-toolbar-buttongroup>
                        <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-button kendoEditorStrikethroughButton></kendo-toolbar-button>
                        </kendo-toolbar-buttongroup>
                        <kendo-toolbar-buttongroup>
                          <kendo-toolbar-button kendoEditorSubscriptButton></kendo-toolbar-button>
                          <kendo-toolbar-button kendoEditorSuperscriptButton></kendo-toolbar-button>
                        </kendo-toolbar-buttongroup>
                        <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-dropdownlist kendoEditorFormat></kendo-toolbar-dropdownlist>
                        <kendo-toolbar-dropdownlist kendoEditorFontSize></kendo-toolbar-dropdownlist>
                        <kendo-toolbar-dropdownlist kendoEditorFontFamily></kendo-toolbar-dropdownlist>
                        <kendo-toolbar-colorpicker kendoEditorForeColor></kendo-toolbar-colorpicker>
                        <kendo-toolbar-colorpicker kendoEditorBackColor></kendo-toolbar-colorpicker>
                        <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-buttongroup>
                          <kendo-toolbar-button kendoEditorCreateLinkButton></kendo-toolbar-button>
                          <kendo-toolbar-button kendoEditorUnlinkButton></kendo-toolbar-button>
                        </kendo-toolbar-buttongroup>

                        <kendo-editor-insert-table-button></kendo-editor-insert-table-button>
                        <kendo-toolbar-buttongroup>
                          <kendo-toolbar-button kendoEditorAddColumnBeforeButton></kendo-toolbar-button>
                          <kendo-toolbar-button kendoEditorAddColumnAfterButton></kendo-toolbar-button>
                          <kendo-toolbar-button kendoEditorAddRowBeforeButton></kendo-toolbar-button>
                          <kendo-toolbar-button kendoEditorAddRowAfterButton></kendo-toolbar-button>
                        </kendo-toolbar-buttongroup>
                        <kendo-toolbar-buttongroup>
                          <kendo-toolbar-button kendoEditorDeleteColumnButton></kendo-toolbar-button>
                          <kendo-toolbar-button kendoEditorDeleteRowButton></kendo-toolbar-button>
                          <kendo-toolbar-button kendoEditorDeleteTableButton></kendo-toolbar-button>
                        </kendo-toolbar-buttongroup>
                        <kendo-toolbar-button kendoEditorInsertFileButton></kendo-toolbar-button>
                        <kendo-toolbar-button kendoEditorInsertImageButton></kendo-toolbar-button>
                        <kendo-toolbar-button kendoEditorViewSourceButton></kendo-toolbar-button>


                        <kendo-toolbar-button text="Export as PDF"
                                              [icon]="'pdf'"
                                              (click)="pdf.saveAs('editor-content.pdf')"></kendo-toolbar-button>
                      </kendo-toolbar>
                    </kendo-editor>
                  </kendo-pdf-export>

Declined
Last Updated: 30 Oct 2019 10:07 by ADMIN

Hello, I am trying to use the table-related toolbar tools in my editor. I am getting the compiler.js:2175 Uncaught Error: Template parse errors:
'kendo-editor-insert-table-button' is not a known element:
1. If 'kendo-editor-insert-table-button' is an Angular component, then verify that it is part of this module.
2. If 'kendo-editor-insert-table-button' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. ("               <!-- Kendo Built-In Toolbar tools not working correctly -->.

 

I have not had an issue with any other toolbar tools.

Declined
Last Updated: 17 Nov 2022 08:40 by ADMIN
Need new Video, Audio, Thumbnail features under Kendo UI for Angular > MEDIA for Video & Audio playing, including loading/buffering, with control buttons and animations. Right now there is almost nothing for Audio, Thumbnail or Video.
Declined
Last Updated: 18 Sep 2019 10:34 by ADMIN

Kendo UI for Angular and Kendo UI for jQuery complete package (all components, css, js) downloadable at once with documentation. Just the way how it was for old (ex: Kendo UI jQuery 2005) versions. No individual component download.

Declined
Last Updated: 30 Jun 2022 08:07 by ADMIN
Created by: Briony
Comments: 2
Category: Kendo UI for Angular
Type: Feature Request
0
Provide a TagCloud control for Kendo UI for Angular. It currently exists in Kendo UI for ASP.NET.
Declined
Last Updated: 11 Jul 2023 14:48 by ADMIN
Created by: Mauro
Comments: 3
Category: Kendo UI for Angular
Type: Feature Request
2

Using a line chart, using date in the category axes, it will be useful to use the format "week number".

See your example: https://47hbw1.run.stackblitz.io

It doesn't look available from this list: https://github.com/telerik/kendo-intl/blob/develop/docs/date-formatting/index.md

Completed
Last Updated: 23 Jan 2024 10:04 by ADMIN
Created by: Seyfor
Comments: 2
Category: Kendo UI for Angular
Type: Feature Request
6

It is really hard to check change log for every component you have. Why not implement common change log for all components.

I already talk to Carl Bergenhem (Product Manager for Kendo UI) about that, and he reply:

"
Great suggestion! I’ll sync this with our web site team and try to see if we can create something like this!

"

As picture says more then 1000 words, I attach propose solution.


Declined
Last Updated: 03 Jun 2019 11:26 by ADMIN
Created by: Mark
Comments: 1
Category: Kendo UI for Angular
Type: Feature Request
1

Reproduction

We got the feedback that in some scenarios it might be more intuitive to open the editor row below the last row since the user expects to "append" new rows at the end.

Declined
Last Updated: 07 Jun 2019 13:37 by ADMIN

Reproduction

Declined
Last Updated: 31 May 2019 08:13 by ADMIN
Created by: Eyup
Comments: 1
Category: Kendo UI for Angular
Type: Feature Request
1

Consider the possibility of leveraging reusable HTML components with Kendo Angular or any other Kendo toolset:

https://caniuse.com/#search=components

 

Declined
Last Updated: 10 Apr 2019 14:20 by ADMIN
Created by: Rastelli
Comments: 1
Category: Kendo UI for Angular
Type: Feature Request
1

Can we have document viewer for angular can show/display/preview different file format?

like .PDF, any type of image file {png, jpg, jpeg, bmp}, .docx, .doc, .txt, .xls, .xlsx, .msg

Duplicated
Last Updated: 15 Jun 2021 12:41 by ADMIN
Created by: Inian
Comments: 1
Category: Kendo UI for Angular
Type: Feature Request
1

Hi,

 

I would like to know if there is any CAPTCHA control that can be used within Angular. I came across the following link:

 

https://www.telerik.com/products/aspnet-ajax/captcha.aspx

 

but in that link it is using ASP.NET so we would like to know if there is a way we could call this from our Angular Project.

 

Please let us know.

 

Thanks and Regards,

Avinash Vallabhaneni

Declined
Last Updated: 23 Feb 2023 06:23 by ADMIN
Created by: Seyfor
Comments: 2
Category: Kendo UI for Angular
Type: Feature Request
1

I would like to allow users to sort single and multiple at the same time.

This could be achieved by adding another option to SortSettings: Single | Multiple | SingleShiftMultiple. The name is not the best proposal, but describes desired behaviour:

By default when user click column, previous sort is cleared and new is applied. But if user holds down shift key, new sort is added to SortDescriptor[] (current behaviour for multiple).