Completed
Last Updated: 28 Mar 2019 13:12 by ADMIN
Created by: Richard
Comments: 1
Category: Kendo UI for Angular
Type: Bug Report
0
Completed
Last Updated: 28 Mar 2019 13:10 by ADMIN
Created by: Paolo
Comments: 2
Category: Kendo UI for Angular
Type: Bug Report
0

I want to filter the scheduler data but I had to add the OwnerId property to the node package interface in order to be able to do so... yet the sample data provided in the examples does include the ownerId, so im guessing all that needs to be done is to add it to the interface.

 

 

Declined
Last Updated: 20 Mar 2019 12:32 by ADMIN
Created by: Mark
Comments: 5
Category: Kendo UI for Angular
Type: Bug Report
0

The manner in which the Kendo Grid handles multiple column sorting is unusual and therefore not what a user would expect.

I believe that people expect that the column they click on to always be the primary sort column.  In the Kendo grid, (when in multi-column mode) this is not the case.

If I click on the "Unit Price" column header, and then on "Product Name", nothing happens.  Instead, clicking on "Unit Price" a second time sorts the table by "Product Name".  This is not natural. 

Instead, this should simply behave like a non-destructive sort.  If I click on "Unit Price" and it sorts by that.  Then, clicking on "Product Name" should sort everything by Product Name and, if the names are the same, the items would be sub-sorted by the previously selected column: "Unit Price"

I would further ask that the only column that shows the arrow be the primary sort column.  Users want to see what the primary sort column is, and not be confused by the other columns, which they will assume are sorted in a reasonable way.  The indices help, but I still think that a single arrow denoting the primary sort column would be preferred.

https://www.telerik.com/kendo-angular-ui/components/grid/sorting/

To be backwards compatible, maybe introduce a 'natural' sort mode which would behave in this manner, since I really believe that this is what a user expect.

As a workaround, we put the grid in 'single' mode, and then when the sort changes, we do the following.  I limit the number of SortDescriptors to 3 as a compromise between sorting the columns in a reasonable way and yet prevent there from being too many arrows

public autoSortChange(sorts: SortDescriptor[]) {
   let singleSortKey = sorts[0];
   let newSort: SortDescriptor[] = [];
   newSort[0] = singleSortKey;
   this.internalSortDescriptors = this.internalSortDescriptors.filter(des => des.field !== singleSortKey.field)

   newSort = sorts.concat(this.internalSortDescriptors)

   this.internalSortDescriptors = Array.from(newSort);
   if (this.internalSortDescriptors.length > 2) {
    this.internalSortDescriptors.length = 2;
   }
   this.gridState.sort = newSort;
   this.gridData = ...
}

Unplanned
Last Updated: 08 Feb 2019 12:55 by ADMIN
Created by: Mariana
Comments: 0
Category: Kendo UI for Angular
Type: Feature Request
3
Provide a class option, for the WindowService, that will allow to style the window's content and title.
Unplanned
Last Updated: 25 Jan 2019 10:11 by ADMIN
Hello, I need to configure default filters operators in Grid filter menu. In my use case I want to filter a date, and I need that the first  filter operator was "Is after " and the second filter "Is before" . It would be nice to have a built-in option to configure the default operators of both filters
Completed
Last Updated: 21 Jan 2019 02:43 by ADMIN
ADMIN
Created by: Petyo
Comments: 8
Category: Kendo UI for Angular
Type: Feature Request
89
Modeled after the Kendo UI widget counterpart:

http://www.telerik.com/kendo-ui/editor
Completed
Last Updated: 03 Jan 2019 11:36 by ADMIN

I requested help in the Forum for an example of using JSDO in a Service under Angular for my grid.component.ts

https://www.telerik.com/forums/angular-7-kendo-grid-using-jsdo-service-component

 

Svetlin stated thet "Indeed, currently we do not have an example dedicated on the use of CRUD operations with JSDO. If you have the time, please submit a new feature request in our UserVoice portal, which will help us to evaluate the demand for such example and implement it in the future. "

 

Please look into building some sample source for an Angular / JSDO Service component.

Thanks

Completed
Last Updated: 20 Dec 2018 13:31 by ADMIN
ADMIN
Created by: Petyo
Comments: 26
Category: Kendo UI for Angular
Type: Feature Request
100
The component feature set will be based on what the jQuery Scheduler widget offers:

http://www.telerik.com/kendo-ui/scheduler
Declined
Last Updated: 27 Nov 2018 09:07 by ADMIN
Created by: Michael
Comments: 1
Category: Kendo UI for Angular
Type: Feature Request
3

Intruduce Mobile Touch Events for Angular2 as in https://docs.telerik.com/kendo-ui/api/javascript/mobile/ui/touch

 

Completed
Last Updated: 19 Nov 2018 07:06 by Holger
Created by: Imported User
Comments: 4
Category: Kendo UI for Angular
Type: Feature Request
15
Similar to the DialogService, adding a toaster module / service to show short message on the screen. As hint, look at the ng2-toastr node module.
Completed
Last Updated: 13 Sep 2018 18:01 by ADMIN
ADMIN
Created by: Petyo
Comments: 1
Category: Kendo UI for Angular
Type: Feature Request
45
Similar to the context menu in the jQuery suite - http://demos.telerik.com/kendo-ui/menu/context-menu
Completed
Last Updated: 17 Jul 2018 15:49 by ADMIN
Created by: Feng
Comments: 1
Category: Kendo UI for Angular
Type: Feature Request
2
Make charts scrollable like how Google Charts implementing it: 
https://developers.google.com/chart/interactive/docs/gallery/controls#chartrangefilter
Declined
Last Updated: 17 Jul 2018 15:41 by ADMIN
It should be possible to apply missing semantic information to the rendered code of a web application to support handicapped users to get the most possible benefit of the Kendo UI framework. 
Completed
Last Updated: 17 Jul 2018 15:38 by ADMIN
Created by: Union
Comments: 1
Category: Kendo UI for Angular
Type: Feature Request
2
Not being able to have multiple series with their own y-axes on the same chart is a dealbreaker right now.

Equivalent functionality in jquery: http://demos.telerik.com/kendo-ui/bar-charts/multiple-axes
Completed
Last Updated: 17 Jul 2018 15:03 by ADMIN
Created by: Luc
Comments: 1
Category: Kendo UI for Angular
Type: Feature Request
4
I suggest to add a angular service similar to the dialog https://www.telerik.com/kendo-angular-ui-develop/components/dialogs/dialog/service/ for the window
Thanks
Completed
Last Updated: 13 Jul 2018 12:54 by ADMIN
Created by: Imported User
Comments: 2
Category: Kendo UI for Angular
Type: Feature Request
1
Option to position the title or labels outside the chart. When you have negative values in the Y axis, the title is positioned inside the chart near the 0 value axis and not at the bottom of the chart.
Completed
Last Updated: 21 Jun 2018 21:16 by ADMIN
Created by: Yasir
Comments: 9
Category: Kendo UI for Angular
Type: Feature Request
53
In current version of Kendo UI for Angular 2, there is no control for Menu or Navigation bar. It would be nice to have a separate component for routing
Declined
Last Updated: 14 Jun 2018 17:11 by ADMIN
Should have features on previous web technologies. What's the point of going new, if features are missing? 
Completed
Last Updated: 22 May 2018 04:39 by ADMIN
Created by: Bjorn
Comments: 4
Category: Kendo UI for Angular
Type: Feature Request
11
There is no solid date range picker out there. It would be perfect for the great arsenal of date / time pickers you already have.

To - From date in one component.

Would be very helpful
Completed
Last Updated: 21 May 2018 14:49 by ADMIN
Created by: Pawel
Comments: 3
Category: Kendo UI for Angular
Type: Feature Request
25
There is no such component as tooltip.

Something similar to old tooltip:

https://docs.telerik.com/kendo-ui/api/javascript/ui/tooltip