Unplanned
Last Updated: 31 Oct 2024 13:20 by Kendo UI

Currently, there is only an option for setting a label for the filter cell operators DropDownList available in the CustomMessagesComponent:

Provide a similar property for setting a custom value for the title attribute of the filter cell operators DropDownList through the custom messages attribute bindings.

Unplanned
Last Updated: 31 Oct 2024 09:59 by Dominik
Created by: Kendo UI
Comments: 3
Category: Grid
Type: Feature Request
3

As the FilterInputWrapperComponents set currentOperator(value: string) uses a hard coded list of operator values (isnull isempty isnotnull isnotemty), it is impossible to create a custom FilterOperator that has no search string - so we can't have isnullorempty isnotnullorempty (or isblank/isnotblank).

Please introduce a requiresSearchValue on the FilterOperatorBase class and make sure FilterInputWrapperComponents does decisions based on that.

Please introduce a isnullorempty/isnotnullorempty filter operator (for strings).

Additional context/sample usage:


 <kendo-grid-column title="Employee / Prospect" field="Name" width="160">
            <ng-template kendoGridCellTemplate let-field let-value let-dataItem>
                <span *ngIf="dataItem.IsProspect" class="pull-left">{{dataItem.Name}}
                    <p class="prospect-indicator pull-right" data-letters="P"></p>
                </span>
                <span *ngIf="!dataItem.IsProspect">{{dataItem.Name}}</span>
            </ng-template>
            <ng-template kendoGridHeaderTemplate let-column>
                <span title={{column.title}}>{{column.title}}</span>
            </ng-template>
            <ng-template kendoGridFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
                <kendo-grid-string-filter-menu
                    [column]="column"
                    [filter]="filter"
                    [filterService]="filterService">
                    <kendo-filter-eq-operator></kendo-filter-eq-operator>
                    <kendo-filter-neq-operator></kendo-filter-neq-operator>
                    <kendo-filter-contains-operator></kendo-filter-contains-operator>
                    <kendo-filter-not-contains-operator></kendo-filter-not-contains-operator>
                    <kendo-filter-startswith-operator></kendo-filter-startswith-operator>
                    <kendo-filter-endswith-operator></kendo-filter-endswith-operator>
                    <kendo-filter-isblank-operator></kendo-filter-isblank-operator>
                    <kendo-filter-isnotblank-operator></kendo-filter-isnotblank-operator>
                    <kendo-filter-isempty-operator text="xIs blank"></kendo-filter-isempty-operator>
                    <kendo-filter-isnotempty-operator text="xIs not blank"></kendo-filter-isnotempty-operator>
                </kendo-grid-string-filter-menu>
            </ng-template>
        </kendo-grid-column>

Unplanned
Last Updated: 31 Oct 2024 07:39 by ADMIN
Created by: Jaap
Comments: 3
Category: Kendo UI for Angular
Type: Feature Request
5
Same layout as TimePicker, except:
- first part (hours) allows negative sign. Popup will display hours from -23 through 23.
- boolean 'allowDays'. Displays a "days.hours:minutes" format. Negative sign still allowed on first part (which is now days instead of hours).
- boolean 'allowSeconds'. Displays also a seconds part.
- number 'value' property containing the current value. The integer part is days, the fractional part the hours and minutes. (Date object would also be nice, I don't see how to specify a negative value.)
Unplanned
Last Updated: 25 Oct 2024 13:23 by David
Created by: Kamran
Comments: 3
Category: Editor
Type: Feature Request
9

The following HTML markup is not supported and misinterpred by the Editor:

<span style="color: red;">Test <span style="color: blue;">Inner Span </span> Test</span>

The result is:

<p>
   <span style="color: red;">Test</span>
   <span style="color: blue;">Inner Span</span>
   Test
</p>

 

 

Unplanned
Last Updated: 24 Oct 2024 18:59 by Sean

We currently are using TinyMce and they have a plugin that allows you to insert templates into their editor.  When writing content, templates can save users a lot of time, especially when they’re entering a lot of the same content over and over. They also have the ability to configure template replace values.

Adding a similar plugin to the Kendo Editor would be nice.

 

https://www.tiny.cloud/tinymce/features/templates/

https://www.tiny.cloud/blog/tinymce-templates/

 

Unplanned
Last Updated: 23 Oct 2024 13:57 by ADMIN
Created by: Iqbal
Comments: 3
Category: DropDownList
Type: Feature Request
5
It would be nice to be able to set dropdown popup alignment position like, left, right, top, bottom for all dropdowns like, dropdown button, dropdown list, etc
Unplanned
Last Updated: 22 Oct 2024 10:56 by Kendo UI

Currently, the views order all-day events based on their index in the events array. However, in the Month view, all-day events are arranged by start date, from earliest to latest. This means that if events start at different times, they will be displayed in that order.

For example - https://stackblitz.com/edit/angular-yvtoyp?file=src%2Fapp%2Fevents-utc.ts,src%2Fapp%2Fapp.component.ts

Day view:

Month view:

Example - https://stackblitz.com/run/?file=src%2Fapp%2Fevents-utc.ts,src%2Fapp%2Fapp.component.ts

React seems to render them in the start date order - https://stackblitz.com/edit/react-kms53j?file=app%2Fshared-sc-events-utc.js

And Google Calendar for reference:

 

 

 


 

 

Unplanned
Last Updated: 21 Oct 2024 11:44 by Kendo UI
Created by: Kendo UI
Comments: 0
Category: Scheduler
Type: Feature Request
1

Currently, the slotClass callback is triggered on every change detection, which also includes user interactions such as dragging or editing an event.

This will become problematic if there is complex logic in the callback and it can get a bit worse if there are bigger slotDivisions in place.

Example with dragging and editing:

https://stackblitz.com/edit/angular-qdjnb6?file=src%2Fapp%2Fedit.service.ts,src%2Fapp%2Fapp.component.ts

While dragging, the slotClass will fire multiple times, and while editing every keypress will trigger the callback. This can be further improved and limit when the slotClass callback is called in the Scheduler component.

 

 

Unplanned
Last Updated: 21 Oct 2024 09:00 by Senthil
Created by: Werner Haltner
Comments: 9
Category: ListBox
Type: Feature Request
22

Hi,

It will be a good component enhancement if selection and multi selection was introduced to the ListBox component. Like Kendo UI for React and jQuery:

https://www.telerik.com/kendo-react-ui/components/listbox/selection/

https://docs.telerik.com/kendo-ui/api/javascript/ui/listbox/configuration/selectable

Thank you for your consideration.

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: 17 Oct 2024 07:51 by Cyril
Created by: Kendo UI
Comments: 1
Category: Timeline
Type: Feature Request
5
Provide an option that will allow reversing the order of the Timeline events, i.e. displaying them in a descending/reverse chronological order.
Unplanned
Last Updated: 13 Oct 2024 19:24 by Tony BenBrahim

Hi,

It will be a nice feature to have the ability to customize the drag hint of the built-in row reordering similar to the hintTemplate.

Completed
Last Updated: 08 Oct 2024 09:11 by ADMIN

Hi,

It would be a nice feature for the WindowService and DialogService settings to have a themeColor property.

Completed
Last Updated: 08 Oct 2024 08:14 by ADMIN
Release 2024 Q4 (Nov)

Currently the Grid checkbox column selection does not allow for selecting a range of rows via shift-click.

As this seems to be a behavior that users expect, based on a similar experience with popular applications like for example Outlook and Gmail, we can consider introducing this behavior in the Grid too.

For example:

When we click on a check box and Shift+click on another checkbox all the rows in between these rows should be checked. Ex: click on 2nd row and shift click on 8th row, all the rows in between 2nd and 8th should be selected.

 

Unplanned
Last Updated: 08 Oct 2024 08:10 by Kavya
Created by: Kavya
Comments: 0
Category: DataQuery
Type: Feature Request
1

Hi Team, 

Currently, the CompositeFilterDescriptor supports the following two logical operators - and and or.

I would like to request the addition of a none logical operator.

Unplanned
Last Updated: 07 Oct 2024 09:57 by Kendo UI
Created by: Kendo UI
Comments: 0
Category: Charts
Type: Feature Request
1

Currently, the label renders to the right:

However, it would be good to have an option to manage the alignment to the left, similar to the RTL mode:

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
In Development
Last Updated: 04 Oct 2024 12:47 by ADMIN
Created by: Michael
Comments: 0
Category: Splitter
Type: Feature Request
1
Provide an option that would allow developers to set the values of aria attributes like aria-valuenow, aria-valuemin and aria-valuemax to the separator elements.
Unplanned
Last Updated: 03 Oct 2024 08:19 by Miria
Created by: Miria
Comments: 0
Category: Map
Type: Feature Request
1
The Map currently doesn't have a Legend option, and adding it would be a great enhancement to the component.
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

1 2 3 4 5 6