Unplanned
Last Updated: 23 Sep 2024 08:59 by ADMIN
Created by: Leo
Comments: 3
Category: Kendo UI for Angular
Type: Feature Request
1

Hi,

I have prepared a forked stackblitz example for a navigator selection with a shared tooltip:

https://stackblitz.com/edit/angular-h1j1hq-kmmqfg?file=src%2Fapp%2Fapp.component.ts

(I also included a screenshot)
There seems to be now way to have a shared tooltip in this scenario that makes sense, clearly no one needs the duplicated items in the tooltip that origins from the navigator selection pane.

So I would propose a flag for a pane to configure if a pane is included in the shared tooltip.

Or alternatively on the series item level a flag that allows for enable / disable or visible / invisible regarding the shared tool tip.

I think there are other cases where this might come handy to have a shared tooltip for several serieses only over one pane, or exclude specific panes and or serieses.

I tried to make the tooltip invisible, on the series level of the navigator pane but something like:

[tooltip]="{ visible: false }"

inside the navigator series seems to be only applicable to the current series tooltips but not the shared ones.

Unplanned
Last Updated: 13 Sep 2024 10:27 by Kendo UI
Created by: Kendo UI
Comments: 0
Category: Kendo UI for Angular
Type: Feature Request
1

Currently, the supported approach for setting values for the input properties of the Kendo UI for Angular components is by binding them to a DOM property. 

Please provide support for the ability to set values for the input properties programmatically.

Unplanned
Last Updated: 15 Aug 2024 08:08 by ADMIN

In a line chart where markers are set to be not visible.
There is no way to increase the hit box of a marker (or line) to be hit if I want to trigger the tooltip of the marker.

The mouse hover obviously works better from it's inherent logic (a click not beeing involved), but triggering the tool tip with a touch gesture seems quite fumbly. One has to hit the line very exactly. Up to a point where one has to try several times to make it happen, which makes it very impractical for new users who might not even know that there are tooltips to be displayed.

For further infos here is my forum thread with more details:

https://www.telerik.com/forums/how-can-i-modify-the-hitbox-for-tooltips-in-linecharts-for-a-touchscreen-device

As described there, increasing the marker size does only work when markers are visible.
Making the line thicker might help a little but comes with unwanted optical changes which are impractical for most usecases.

Best Regards,

Leo Härdle

Unplanned
Last Updated: 12 Aug 2024 08:21 by ADMIN
Created by: Dimiter
Comments: 0
Category: Kendo UI for Angular
Type: Feature Request
1
Please add custom/translatable messages for the ListView component similar to other Kendo UI for Angular components. Primarily needed for translating the Pager messages.
Unplanned
Last Updated: 19 Jul 2024 06:23 by Mauro
Created by: Sergey
Comments: 1
Category: Kendo UI for Angular
Type: Feature Request
6

Hi Team, 

Currently, the Kendo UI for Angular library relies on SVG icons as default icons. This means that developers would have to use a service to change the default icons inside components. This approach, however, does change all icons inside the project and is not suitable for cases where only a particular icon in a single component should be changed. 

Therefore, I would like to request a designated property or a specific approach that would allow developers to change particular icons inside particular components.

Unplanned
Last Updated: 16 Jul 2024 07:19 by ADMIN
Created by: Samuel
Comments: 3
Category: Kendo UI for Angular
Type: Feature Request
9

Currently there is no component for adding text to an input from some datasource. There is an autocomplete but it does not allow mixing freetext and text coming from a datasource. And it only allows for one value.

 

What we need is exactly this  :  http://jeff-collins.github.io/ment.io/#/

 

Typing a special character in a textbox (#, or @) would bring a datalist the user can choose from.

 

Can this be implemented please  ?

Unplanned
Last Updated: 14 Jun 2024 05:46 by ADMIN
Created by: arthur
Comments: 2
Category: Kendo UI for Angular
Type: Feature Request
7

At the moment the editor component only supports ordered list with numbers as bullet points:

1. Item #1

2. Item #2

It would be great if ordered lists would support different list-style-types of HTML like "lower-alpha", "upper-alpha", "lower-roman", "decimal-leading-zero", ...: https://www.w3schools.com/cssref/pr_list-style-type.php

a. Item #1

b. Item #2

--------------

i. Item #1

ii. Item #2

...

Unplanned
Last Updated: 24 May 2024 09:26 by ADMIN
Created by: Herman
Comments: 0
Category: Kendo UI for Angular
Type: Feature Request
3
It would be nice to have support for export SVG format in Signature Component.

https://www.telerik.com/kendo-angular-ui/components/inputs/signature/
Unplanned
Last Updated: 26 Apr 2024 05:38 by ADMIN
Created by: Kendo UI
Comments: 0
Category: Kendo UI for Angular
Type: Feature Request
2

Typing a decimal number in a grid filter menu input for number type removes dot sometimes.
Can be reproduced in this Grid: 

https://www.telerik.com/kendo-angular-ui/components/grid/filtering/filter-menu/

Unplanned
Last Updated: 22 Apr 2024 10:54 by Sergey
Created by: Sergey
Comments: 0
Category: Kendo UI for Angular
Type: Feature Request
1

Implement a MediaPlayer component like the jQuery one:

https://demos.telerik.com/kendo-ui/mediaplayer/index

Unplanned
Last Updated: 11 Apr 2024 13:39 by ADMIN

Hi Team,

I am looking for the ability to know from which resource (row) the [RemoveEvent](https://www.telerik.com/kendo-angular-ui/components/scheduler/api/RemoveEvent) is originated when a single event is shared by many resources.

Thanks

Alrick

Unplanned
Last Updated: 19 Mar 2024 15:56 by ADMIN

When virtual is true for a multiselect and checkboxes are set to true, there is a bug which results in multiple items being selected.

To reproduce, one needs to scroll down a long list of items.  The amount to scroll seems random but might have something to do with the itemHeight setting.  When clicking directly inside the checkbox, two items are selected at once - the item selected, and one other seemingly random item.   This does not happen if the click selection event happens inside the item, but not the checkbox.

I have reproduced this inside this code sandbox: https://codesandbox.io/p/sandbox/mystifying-shirley-2qxn32

 

Unplanned
Last Updated: 28 Feb 2024 10:01 by ADMIN

Dear Kendo-Supportteam,

We are experiencing an issue with the Editor component.

It turns out that setting the iframe input to false causes the paste event to be triggered twice.
Once as documented before the valueChange event and once seemingly as the native paste event after valueChange.

There are multiple issues resulting from this.

  1. Calling preventDefault on the initial event also does NOT prevent the native event from triggering directly after. Only the following events from the Editor itself are prevented.
  2. As the next event is the actual native event of type ClipboardEvent, the interface is different from what the type definitions suggest. Leading to errors, if the attached method tries to just call isDefaultPrevented on the event.

It is quite easy to reproduce this from your event demonstration examples by just setting the iframe input to false and maybe also trying to call isDefaultPrevented in the respective paste event handler.

Kind Regards,
Hannah

Unplanned
Last Updated: 22 Feb 2024 12:13 by Iulian
Created by: Iulian
Comments: 0
Category: Kendo UI for Angular
Type: Feature Request
1
Unplanned
Last Updated: 15 Feb 2024 07:27 by ADMIN
Created by: Daniel Mettler
Comments: 1
Category: Kendo UI for Angular
Type: Feature Request
0

In some calendar apps like Apple it's nice to extend appointments with a travel time (or preparation time).

Please extend Kendo Scheduler with such an event preparation-time and also a follow-up time, which looks like this:

Unplanned
Last Updated: 29 Jan 2024 08:17 by ADMIN

The feature request affects built-in filter cell components for primitive types such as StringFilterCellComponent, NumericFilterCellComponent, etc.

 

The built-in filter cell components currently allow to hide operators, but doesn't allow to hide clear button, which is being shown when a user provides some input to these filters. The workarounds are in the current moment possible, but seems to be not very maintainable, as the most obvious workaround is to control with the CSS the internal stylings of the components, which can change with any patch. I would hope for some toggle, which can control hide/display of the clear button.

 

The use-case in which someone might want to achieve this, is when the filtering is being cleared only globally for the whole grid. and local clearing is not necessarily desired.

 

The behavior can be tested on an example or provided example in official docs.

Unplanned
Last Updated: 23 Jan 2024 11:47 by Rodney
Created by: Chakshuta Desai
Comments: 2
Category: Kendo UI for Angular
Type: Feature Request
3

Hello,

I want to request a new control (Powerpoint Viewer) that we can use to slide show Powerpoint (ppt or pptx) files.

the main purpose is to handle the previous and next clicks of slides.

 

Thanks,

Chakshuta Desai

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. 

 

 

Unplanned
Last Updated: 01 Dec 2023 14:00 by Debanjana
Created by: Debanjana
Comments: 0
Category: Kendo UI for Angular
Type: Feature Request
1

Reorder the tiles once the dragged tile goes to the new location.

If it closes up immediately (as it does now) that means things are shuffling around while the user is actually dragging which can be stressful – they’ve immediately hit the point of no return Ideally the original location stays ‘open’ until the user lets go in the new locations. Then it all shifts around.

    Unplanned
    Last Updated: 27 Nov 2023 16:18 by ADMIN
    Created by: Kendo UI
    Comments: 0
    Category: Kendo UI for Angular
    Type: Feature Request
    0

    The status bar is used to represent a summary of the aggregated values of the selected cell.


     

    1 2 3 4 5