Unplanned
Last Updated: 25 Jul 2024 13:19 by Kendo UI
This will allow developers to disable the navigation as in some cases the navigation is not needed.
Unplanned
Last Updated: 25 Jul 2024 12:43 by John
Created by: Bill
Comments: 2
Category: Filter
Type: Feature Request
7

Hello,

We have been starting to use the Filter Feature to open up a Dialog for users to customize the filter, but it would be nice to be able to hide some of default buttons, and format the width around the filter expressions.  We need to hide some of these as we are not building the backend to handle the need for some of these items.

For example:

- We are not building the ability to allow for an OR between Filters, so being able to hide the "And/Or" buttons would be helpful.

- We are not building the ability to handle groups of statements, just one list of filers, so removing the "Add Group" button would be helpful.

- We are using the template ability to customize one of our Expressions with a template the uses the <kendo-multiselecttree> dropdown, but really don't need the extra dropdown to list the Operator, so having the ability to remove the operator drop down completely for this one Expression would be helpful.

- Being able to adjust the width of the three boxes in the Filter expression as I think the Operator box is too wide.

I attached what it is we are trying to accomplish it it helps.

Thanks,

Bill

Unplanned
Last Updated: 24 Jul 2024 10:00 by Kendo UI

It will be nice to have the option to disable the whole component or set it in readonly mode. Currently, you would need to attach the k-disabled class to the filter component to disable the component.

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

 

Unplanned
Last Updated: 24 Jul 2024 07:04 by Kendo UI
Created by: Kendo UI
Comments: 0
Category: ConversationalUI
Type: Feature Request
2

If you bind the messages property to an observable and use the async pipe it will throw the following error:

'Message[] | null' is not assignable to type 'Message[]'

The messages should be able to also receive null to avoid the error. The following workarounds can be used until the property is nullable:

<kendo-chat [messages]="(feed | async)!" [user]="patientUser"></kendo-chat>

Or use toSignal:

<kendo-chat [messages]="mySignal()" [user]="patientUser"></kendo-chat>
  public feed: Observable<Message[]>;
  public mySignal: Signal<Message[]>;
  public readonly patientUser: User = {
    id: 1,
  };

  public readonly practitionerUser: User = {
    id: 0,
  };

  constructor() {
    const hello: Message = {
      author: this.practitionerUser,
      suggestedActions: [
        {
          type: 'reply',
          value: 'Neat!',
        },
        {
          type: 'reply',
          value: 'Thanks, but this is boring.',
        },
      ],
      timestamp: new Date(),
      text: 'Hello, this is a demo bot. I don`t do much, but I can count symbols!',
    };

    this.feed = merge(from([hello])).pipe(
      scan((acc: Message[], x: Message) => [...acc, x], [])
    );
    this.mySignal = toSignal(this.feed ) as Signal<Message[]>;
  }

 

Unplanned
Last Updated: 23 Jul 2024 18:26 by Kurt
Created by: Robert
Comments: 12
Category: Scheduler
Type: Feature Request
35

Provide the possibility to dynamically change the height of the slots in Month, Multi-Week, and other views. This feature is useful in order to fit the events in the specific slot:

jQuery Scheduler:

https://demos.telerik.com/kendo-ui/scheduler/adaptive-slot-height

Unplanned
Last Updated: 23 Jul 2024 06:02 by Walter
Created by: Walter
Comments: 0
Category: ListBox
Type: Feature Request
1
It would be a good addition to the component if there is a filtering UI that provides a built-in directive for filtering and also a manual approach.
Pending Review
Last Updated: 22 Jul 2024 22:35 by SB
Exporting large of amounts of data requires special handling by the web application so the user knows the excel export process is working.  With kendo-excelexport component, calling the save() function is where all the work is done and it doesn't return until the Excel file is complete due to it being synchronous.  There should be some way for the application to subscribe to progress events during the construction of the excel export process so the application can inform the user of this progress.
Unplanned
Last Updated: 19 Jul 2024 10:23 by ADMIN
Created by: Kimberly
Comments: 5
Category: Grid
Type: Feature Request
8

The Angular Grid export only includes PDF and Excel formats. Requesting an enhancement to be able to export to CSV for purposes of opening the data in a text editor other than Excel or to allow for easier upload into other applications.

There are articles that show how to do this but it would be better out of the box from Telerik.

https://stackblitz.com/edit/kendo-angular-grid-csv-export?file=app/app.component.ts

https://www.codeproject.com/Articles/5162666/CSV-Export-In-Angular-with-Kendo-Control 

 

 

Unplanned
Last Updated: 19 Jul 2024 08:09 by ADMIN

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: 19 Jul 2024 06:23 by Mauro
Created by: Sergey
Comments: 1
Category: Kendo UI for Angular
Type: Feature Request
5

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:33 by ADMIN
Created by: Kendo UI
Comments: 0
Category: Editor
Type: Feature Request
1

Currently, all Editor toolbar tools support the disabled property, except the kendo-toolbar-dropdownlist

Provide disabled property for controls that are utilizing the DropDownList.

 

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: 16 Jul 2024 06:43 by Simon
Created by: Simon
Comments: 0
Category: ConversationalUI
Type: Feature Request
1
It will be nice to have the option to edit or delete a message when selecting it, similar to other messaging services like Microsoft Teams.
Unplanned
Last Updated: 16 Jul 2024 06:40 by Simon
Created by: Simon
Comments: 0
Category: ConversationalUI
Type: Feature Request
1
I would like to customize the timestamp of a selected item, and using a template seems to be the best approach since displaying the time is unnecessary when messages are stacked in my case.
Unplanned
Last Updated: 16 Jul 2024 06:36 by Simon
Created by: Simon
Comments: 0
Category: ConversationalUI
Type: Feature Request
1

Such a directive will help in customizing the content of the attachments and I would also like to create a horizontal list that expands downward which will eliminate the scroll button.

Unplanned
Last Updated: 15 Jul 2024 07:08 by Christian

Hi,

Currently, when adding or editing an event, if the user chooses any start date, the end date field does not update, and the user needs to manually add the time. This is acceptable, but in some cases, automatically adding 30 minutes or 1 hour to the start date and time would be a useful feature.

Similar to Microsoft Teams Meeting editor. Recording provided.

 

Unplanned
Last Updated: 12 Jul 2024 09:57 by ADMIN
Created by: Grimme
Comments: 0
Category: MultiViewCalendar
Type: Feature Request
0

We have been trying to figure out how to react properly when a user select it's date range with the MultiCalendarView component. There is no such event that fires when the user has finished selecting a date range - no matter which DateInput he uses (start or end). 

Unplanned
Last Updated: 09 Jul 2024 10:18 by Sylvain
Created by: Sylvain
Comments: 0
Category: Grid
Type: Feature Request
1

Hi, Team!

I would like to request functionality that enables me to implement a feature allowing the users to drag and drop multiple rows simultaneously inside the Kendo UI for Angular Grid.

Unplanned
Last Updated: 08 Jul 2024 12:00 by Ahmed
Created by: Ahmed
Comments: 0
Category: TileLayout
Type: Feature Request
1

Hi, Team! 

Currently, users can click on the entire header of a specific tile in the TileLayout component in order to reorder it. 

I would like to request a feature that would allow me to specify a specific element(for instance a custom icon) that the user should click on in order to perform the reordering operation.

Unplanned
Last Updated: 08 Jul 2024 11:37 by Kendo UI
Created by: Kendo UI
Comments: 0
Category: Editor
Type: Feature Request
1

Please provide a template for customizing the value appearance of the DropDownList control types in the toolbar of the Editor, similar to the one available for the default DropDownList component:

At present, the only approach that can be used for configuring a value template is by implementing a custom DropDownList tool in the toolbar of the Editor:

1 2 3 4 5 6