Pending Review
Last Updated: 13 Nov 2024 14:09 by Florian
Created by: Florian
Comments: 0
Category: Kendo UI for Angular
Type: Feature Request
0
I find the user handling of the time picker control quite complicated. Therefore, I would very much prefer an Angular Material like component with a clock to set the hours and minutes (see attached image).
Declined
Last Updated: 14 Nov 2024 14:54 by ADMIN
Created by: Claudio
Comments: 1
Category: Kendo UI for Angular
Type: Feature Request
0

By default the grid pagination only works taking count of the actual records instead of (alternatively) taking in consideration the groups count.

It would be nice to have the possibility to choose between those 2 when using groupBy and process functions.

This pagination feature is already implemented in the Kendo Ui for Asp.Net Core, but it is not available in functions such as processgroupBy or (toDataSourceRequest/toDataSourceRequestString/toOdataString)

Here you can find the related documentation page for the Asp.Net implementation.

Right now the only possible way to achieve this behavior in combo with a KendoAngularGrid is to use the (toDataSourceRequest/toDataSourceRequestString), then into the controller you'll have to mutate the DataSourceRequest Object like following:

[HttpGet]
public async Task<IActionResult> GetData([DataSourceRequest] DataSourceRequest request, CancellationToken cancellationToken) {
    var data = //...  ;

    request. Skip = (request.DataSourceRequest.Page - 1) * request.DataSourceRequest.PageSize;
    request.Take = request.DataSourceRequest.PageSize;
    request.IsExcelExportRequest = true; // without this the items property of the GroupResult type will be null
    request.GroupPaging = true;

    return Ok(await data.ToDataSourceResultAsync(request, cancellationToken);
}

Unplanned
Last Updated: 21 Oct 2024 08:31 by Kendo UI

Add functionality to the Java Spring Boot sample application to support server-side data operations, such as sorting, filtering, and pagination. Currently, the demo uses the process method to do the operations on the client.

https://github.com/telerik/kendo-angular/tree/master/examples-standalone/kendoangular-java-integration

 

Unplanned
Last Updated: 07 Oct 2024 06:36 by ADMIN
Created by: Miria
Comments: 0
Category: Kendo UI for Angular
Type: Feature Request
1
It would be great to have an option to add pie charts to the map, a feature similar to the attached picture
Unplanned
Last Updated: 16 Oct 2024 11:34 by ADMIN
Created by: Paul
Comments: 3
Category: Kendo UI for Angular
Type: Bug Report
0

When typing into the Angular Datepicker on iOS devices, the page scrolls unexpectedly after entering the first character of any date part (day, month, year). The scroll occurs on each subsequent character input (2nd, 3rd, etc.), making it difficult to use the input field.

Steps to Reproduce:

  1. Open a webpage with a Kendo UI Datepicker on an iPhone (iOS v16+, any model). Ensure the datepicker is positioned far enough down the page that scrolling is required to reach it. Example can be seen at https://angular-v7j3ag.stackblitz.io/
  2. Focus on the Datepicker input field.
  3. Enter a date manually using the on-screen keyboard.
  4. After typing the first character into any date part, the page behaves normally, but it scrolls up to the top of the page on subsequent character inputs.

Expected Behaviour: The page should remain in place when typing, allowing smooth input without scrolling.

Observed Behaviour: The page scrolls up after entering the second character of any date part (day, month, or year) and continues to do so on each further input.

Reproduction: The issue was recreated using Kendo's own Datepicker example (with added spacing to demonstrate the scroll behaviour). https://stackblitz.com/edit/angular-v7j3ag

Affected Platforms:

  • All iPhone models (tested 11 - 15) with iOS v16+ (reproducible on Safari and Chrome browsers).
  • Does not occur on desktop or Android devices.

Additional Notes:

  • A video demonstrating the behaviour is attached.
  • This has been reproduced on both BrowserStack and physical iPhone devices.

I couldn’t find an existing bug report related to this issue, so I would appreciate it if you could confirm whether this has been reported or provide further guidance.

Unplanned
Last Updated: 01 Oct 2024 09:06 by ADMIN

Hello,

In our gantt component we need to add a marker on a specific date. (Our "Today" is not the real current day but a specific date)

There is an example for jquery version : https://docs.telerik.com/kendo-ui/knowledge-base/gantt-custom-time-marker

I understand that currentTimeMarker is meant to be used on the current time.. But an input to override and force another date could be useful.

Or maybe be able to add others TimeMarkers with a date as Input should not be difficult to implement as all the code should be almost the same.

Regards

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.
Declined
Last Updated: 05 Aug 2024 12:43 by ADMIN

Hi,

I'd like to request a feature for programmatically dismissing notifications in Angular. This is a common feature for notification / toast component, but it is missing in Kendo UI for Angular.

Right now, once a closable notification is shown, there's no way to dismiss it programmatically, which can lead to clutter (see attached screenshot).

Here are the proposed features:

  1. Programmatic Notification Dismissal:

    • Dismiss by type
    • Dismiss by ID
    • Dismiss all
  2. Global Notification Limit:

    • Set a global limit for how many notifications can be displayed at once.

These additions would greatly enhance the user experience by preventing notification clutter and providing better control for developers.

Thanks for considering this!

Best, Sergei.

Declined
Last Updated: 31 Jul 2024 12:01 by ADMIN

Hi,

I've noticed a strange issue with the ContextMenu: in Firefox, the div text selection loses focus after the context menu is shown.

My actual goal is to perform some functionality on the selected text by clicking the appropriate item from the context menu. However, the selection is lost after the context menu is displayed, making it difficult for the user to identify the current selection. This issue occurs only in Firefox; it works fine in Chrome and Edge.

I have attached below sample code and sample screenshot.

Here is Chrome/Edge context menu behavior (as expected).

Here is FireFox context menu behavior (focus lost on selected text).

Sample Code:

https://stackblitz.com/edit/angular-udag3v-aoxarf?file=src%2Fapp%2Fapp.component.ts,src%2Fapp%2Fcontextmenu-items.ts

Please let me know if there is any solution for this.

Thanks,

 

Pending Review
Last Updated: 26 Jun 2024 09:38 by Dimitris
Created by: Dimitris
Comments: 0
Category: Kendo UI for Angular
Type: Feature Request
1


It would be great if we could add footnotes in the Kendo editor, similar to how TinyMCE handles them, or a simpler version like the example found here: https://prosemirror.net/examples/footnote/

Duplicated
Last Updated: 19 Jun 2024 06:27 by ADMIN
Created by: Akshay
Comments: 0
Category: Kendo UI for Angular
Type: Feature Request
2

Hi Team,

At times organization need to include their logo in exported excel and easiest way to include logo would be to user MS Excel's IMAGE function. So, could you please consider this request, where in developers can include images in exported excel's using IMAGE function, in Kendo Angular UI.

 

Regards,

Akshay

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

...

Declined
Last Updated: 14 Jun 2024 07:51 by ADMIN
Created by: anthony
Comments: 3
Category: Kendo UI for Angular
Type: Bug Report
2

I'm experiencing an issue with the filtering and sorting functions in a Kendo Grid. This problem seems to occur with the latest version of Kendo UI for Angular in combination with Angular 18.

I have created a sample project on StackBlitz where the issue can be reproduced: StackBlitz Project.

In the example, you can see that the filtering and sorting capabilities are enabled. However, both filtering and sorting do not seem to work correctly.

Here is a relevant code snippet:

<kendo-grid [data]="gridData" [selectable]="selectableSettings" [navigable]="true" [height]="300" filterable="menu, row" [sortable]="true">
    <kendo-grid-column field="ProductName" title="Product Name"></kendo-grid-column>
    <kendo-grid-column field="UnitsInStock" title="Units In Stock"></kendo-grid-column>
    <kendo-grid-column field="UnitsOnOrder" title="Units On Order"></kendo-grid-column>
    <kendo-grid-column field="ReorderLevel" title="Reorder Level"></kendo-grid-column>
</kendo-grid>

What I have tried:

  1. I checked that the correct versions of Kendo UI and Angular are installed.
  2. I tried different settings for the filtering and sorting capabilities.
  3. I reviewed the Kendo UI documentation to ensure I didn't miss anything.

Current behavior:

  • Filtering: When I try to filter, the results are not updated correctly.
  • Sorting: Sorting does not seem to produce the correct order.

Expected behavior:

  • The grid should correctly filter and sort based on the column values.

Am I doing something wrong, or does this seem to be an issue with the Kendo UI framework? Any suggestions or solutions are welcome!

Thanks in advance for the help!

Duplicated
Last Updated: 29 May 2024 13:58 by Augusto
Created by: Augusto
Comments: 2
Category: Kendo UI for Angular
Type: Feature Request
0

Hi,

Many users of our apps have asked to add a "Clear" button to the Date Picker popup. For example, it could be placed next to the "Today" button. This would be something very useful and done without too much effort, as there is room in the popup and it doesn't involve any calculation.

Regards,

Augusto.

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/
Duplicated
Last Updated: 30 May 2024 07:18 by Ekaterina
Created by: Ekaterina
Comments: 2
Category: Kendo UI for Angular
Type: Bug Report
0

Hi, Kendo team.

We have a small but annoying bug.

In the table filter for numeric column:

  • user type first part of floating value quickly - Filter button is still disable
  • user type comma symbol
  • then Filter button became enabled - comma symbol disappears
  • if user type slowly (or very quick) - then is not such bug.

Is it any workaround for it?

Thank you.

Ekaterina.

 

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
2

Implement a MediaPlayer component like the jQuery one:

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

1 2 3 4 5 6