Declined
Last Updated: 06 Feb 2024 00:08 by Sergey
Created by: Arsham
Comments: 5
Category: Grid
Type: Feature Request
31
hello 
i`m always using kendo grid in my project
but i can`t import excel to kendo grid 
please make it possible to import excel file and select specific sheet to kendo grid
Declined
Last Updated: 31 Jan 2024 12:05 by ADMIN
Created by: Karthik
Comments: 1
Category: Editor
Type: Feature Request
1
Add table, dropdownlist, textbox, other input components in the Kendo UI Editor to create custom Editor.
Declined
Last Updated: 29 Jan 2024 12:15 by ADMIN

1. Start using the Kendo Tree View in Angular.

2. Load a large dataset for the Kendo Tree View, observe the time taken to render the Tree View.

3. The timing will increase if the dataset keeps on increasing.

4. Suggest some ways to reduce or optimize it.

 

This is how I am using the Kendo TreeView in Angular,

            <kendo-treeview #treeView [nodes]="folderData" textField="Name" kendoTreeViewExpandable
                kendoTreeViewSelectable kendoTreeViewHierarchyBinding childrenField="Child"
                [(expandedKeys)]="expandedKeys" (expand)="onExpand($event)" (selectionChange)="folderSelected($event)"
                (collapse)="onCollapse($event)" (nodeClick)="onNodeClick($event)" id="folderView">
                <ng-template kendoTreeViewNodeTemplate let-dataItem let-index="index">
                    <div ngbDropdown container="body" placement="right left" [id]="'folder-' + dataItem?.ID"
                        class="folder-heading-container" *ngIf="dataItem?.ID"
                        [ngClass]="{'selected-folder': dataItem?.ID == selectedFolder?.ID, 'no-data': !dataItem?.FolderCount}">
                        <div class="icon">
                            <i class="oci oci-folder1"></i>
                        </div>
                        <div class="title" *ngIf="renameId != dataItem?.ID" ngbTooltip="{{ dataItem?.Name }}"
                            container="body">
                            {{dataItem?.Name}}
                        </div>
                        <input type="text" maxlength="255" (keyup)="renameChanged($event)" (blur)="saveUpdatedName()"
                            id="folder-rename-box" class="input-box" *ngIf="renameId == dataItem?.ID"
                            [(ngModel)]="renameText">
                        <div (click)="getExactArtifactCount(dataItem, $event)" class="count remove_icon_drop"
                            ngbTooltip="Click to view folder details" container="body" ngbDropdownToggle
                            container="body" placement="right left"
                            *ngIf="dataItem?.artifactCount || dataItem?.FolderCount">
                            {{ dataItem?.FolderCount + dataItem?.artifactCount }}
                        </div>
                        <div class="count remove_icon_drop" *ngIf="!dataItem?.artifactCount && !dataItem?.FolderCount">
                            0
                        </div>
                        <div ngbDropdownMenu class="folder-view-artifact"
                            [ngClass]="{'test-case-link-parent': linkTestCase}">
                            <div class="exact-artifact-count scrollableY"
                                [ngClass]="{'test-case-link': linkTestCase, 'other-link': !linkTestCase}"
                                id="exact-artifact-count" *ngIf="exactArtifactCount?.length">
                                <div class="artifact" *ngFor="let artifact of exactArtifactCount">
                                    <div class="icon">
                                        <i [ngStyle]="{'color': artifact.color}"
                                            class=" oci {{artifact.icon}} font_16px align-middle">
                                        </i>
                                    </div>
                                    <div [ngStyle]="{'color': artifact.color}" class="title">{{artifact.artifactName |
                                        pipe_grogu : '': '' :
                                        'change_component_name'}}</div>
                                    <div [ngStyle]="{'color': artifact.color}" class="count">{{artifact.count}}</div>
                                </div>
                            </div>
                        </div>
                    </div>
                </ng-template>

            </kendo-treeview>
Declined
Last Updated: 23 Jan 2024 10:14 by ADMIN
Created by: Imported User
Comments: 12
Category: Kendo UI for Angular
Type: Feature Request
36
I need access to Sketch support files containing the existing UI elements for Kendo for Angular so that I can create comps for my design. 

Ideally this would be a collection of sketch symbols that match the current Kendo UI design. 
Declined
Last Updated: 15 Jan 2024 14:21 by Josef

 

input to grid:

@Input()
public additionalExcelExportInfos: { additionalWorksheetTitle: string, 
parameters: { key: string, parameterValue: any }[]
};

 

output in excel file:

Declined
Last Updated: 12 Jan 2024 15:26 by ADMIN

Currently kendo ListBox does not support double click event.

Implement kendo ListBox in Angular.

Double click on a row.

No event is emitted.

Declined
Last Updated: 19 Dec 2023 12:49 by Ekaterina
Created by: Ekaterina
Comments: 4
Category: DatePicker
Type: Feature Request
0

Hi team.

We would like to provide a possibility to use our specific masks for Date Picker component, like this:

  • d.m.y = Current date
  • 1.m.y = 1st day of current month
  • 31.m.y = Last day of current month
  • etc.

Can you recommend a good solution for this?

 

Declined
Last Updated: 03 Nov 2023 16:31 by ADMIN
Created by: Jaap
Comments: 4
Category: TimePicker
Type: Feature Request
2

In the TimePicker (and other Date Input controls) you can in the input field use the arrow keys or mousewheel to go endless through the options. E.g. for minutes you can go directly from 00 to 59 using the down arrow. Especially with large ranges like minutes this is handy.

But in the popup you can't do that. It would be nice that the user can scroll directly from 00 to 59, 58 and so on. See composed image below.
(This should not be done when there are less options than the size of the popup, else you whould get duplicate options visible. That would be confusing for the user.)

Would be a usefull feature, especially when using this control on touch devices.

Declined
Last Updated: 31 Aug 2023 15:38 by ADMIN
Created by: Holger
Comments: 3
Category: Kendo UI for Angular
Type: Feature Request
2
Modeled after the jQuery widget counterpart:

https://demos.telerik.com/kendo-ui/wizard
Declined
Last Updated: 31 Aug 2023 15:16 by ADMIN
Created by: Maxime Bellemare
Comments: 1
Category: ComboBox
Type: Feature Request
1

When the popup of the Combobox is opened and an item is focused, select its value on pressing Enter when using custom values:

https://dojo.telerik.com/UGajuzUh

Declined
Last Updated: 31 Aug 2023 15:15 by ADMIN
Created by: Musashi
Comments: 2
Category: MultiSelect
Type: Feature Request
0

Currently, given a multiselect with some data and allowCustom = true, if the user types "sm" and hits Enter, the control finds the first item in data that starts with "sm" and automatically selects that.

Repro: https://stackblitz.com/edit/angular-buffxv?file=app/app.component.ts

  1. Type "sm" in the MultiSelect and hit Enter
  2. "Small" is automatically selected, valueNormalizer is not hit at all

Looking at the code for the MultiSelect, the auto selection seems to happen because of findIndex(text, startsFrom = 0); the offending line: text && itemText.startsWith(text);

Ideally, the MultiSelect should give me a hook to determine what item is selected. Maybe hit valueNormalizer on Enter

Declined
Last Updated: 31 Aug 2023 15:14 by ADMIN
Created by: Feng
Comments: 4
Category: DropDownButton
Type: Feature Request
1
Please support nested items in DropDownButton and SplitButton
Declined
Last Updated: 31 Aug 2023 15:13 by ADMIN
Allow setting button size for any type of button (DropDownButton, SplitButton) and support dividers in dropdown items
Declined
Last Updated: 31 Aug 2023 15:10 by ADMIN
Created by: Harikrishna
Comments: 1
Category: Editor
Type: Feature Request
1
Provide a built-in option to change the width of the column dynamically based on the content.
Declined
Last Updated: 31 Aug 2023 15:09 by ADMIN

Thank you for providing information about customization using <kendo-grid-message>

We can customize text inside drag a column here.... using <kendo-grid-message>

but in that line I am willing to add column chooser and one icon

i.e in tag <kendo-grid-group-panel> I want to add column chooser and one icon

please find below screen shot, in highlighted areas I want to add mentioned things

I want to replace highlighted areas in tag <kendo-grid-group-panel> as

Please help me for this issue 

Declined
Last Updated: 31 Aug 2023 15:02 by ADMIN

Currently, the kendoEditorCreateLinkButton does not provide a way to specify the Dialog container, as the following article demonstrates:

https://www.telerik.com/kendo-angular-ui/components/dialogs/dialog/service/#toc-specifying-the-dialog-container

Please consider providing a built-in appendTo option to the link button directive. This will help to determine where the Dialog will be appended when the Editor is used within a kendoGridEditTemplate/kendoGridCellTemplate:

Using kendoGridEditTemplate:

https://stackblitz.com/edit/angular-yddl1n-inbwen

Using kendoGridCellTemplate:

https://stackblitz.com/edit/angular-yddl1n-t3afde

 

Declined
Last Updated: 31 Aug 2023 14:55 by ADMIN
Created by: PNC
Comments: 5
Category: Stepper
Type: Feature Request
2

Hi,

It would be really nice if you could add steppers with sub steps. Current samples don't have sub steps. 

 

Declined
Last Updated: 31 Aug 2023 14:54 by ADMIN
Created by: Robert
Comments: 1
Category: TimePicker
Type: Feature Request
2

Hello dear Telerik-Team,

I have a problem with the timepicker: We have same nightshifts and there are time-intervals that go over midnight. The available dates in the timepicker should lay between the min and max borders.

https://stackblitz.com/edit/angular-ktai17?file=app/app.component.ts

Provide support for overnight time range.

Declined
Last Updated: 31 Aug 2023 14:52 by ADMIN
Created by: Rohit
Comments: 3
Category: Grid
Type: Feature Request
2
I would like to achieve row resize. Just like you have column resize, user should be able to point the mouse at the bottom of the row and drag to resize the row. 
Declined
Last Updated: 24 Aug 2023 10:32 by ADMIN

When you have a very long list of items to display in the tree view its not always ideal to have a vertical scroll.  In order to better utilize space and allow for the user to see more options on the screen at once it would be nice to have a configuration to allow for the list to be split up into columns.  So for example if you have a list of 90 items, you can maybe have 3 columns of 30 items each.  Please see the attached image that demonstrates what I am referring too.  

 

The Kendo Silverlight does have something similar: https://docs.telerik.com/devtools/silverlight/controls/radtreeview/how-to/create-horizontal-treeview

1 2 3 4 5 6