I have a grid where row height and detail row height are set correctly (i think) and virtual scrolling is turned on. when I expand a row to show the detail view, as soon is i try to interact with the detail view (It has a tabstrip in it) it will jump that row to the top of the gird view. It's pretty jarring. ONLY when the detail component is at the top of the grid view will it let me interact with the detail view. Not sure if i'm doing something wrong or there's a bug.
i attached a zipped mp4 of the behavior.

Tengo algo como esto dentro de un kendo grid , en el toolbar yo necesito tener un input que me servira de buscador para mi grid y al lado quiero kendoGridAIAssistantTool , hacia la derecha quiero 2 botones importar excel y pdf , la pregunta es porque no aparece mi input? cuando utilizo kendo toolbar , ademas que quiero usar comandos de generar PDF Y Excel del grid pero solo puedo con kendoGridToolbarTemplate deberia poder usarlo tambien con kendo-toolbar , ya que kendoGridToolbarTemplate y kendo-toolbar no se puede usar a la misma vez , deberian arreglar eso
<kendo-toolbar>
<kendo-textbox
style="width: 200px"
placeholder="Buscar..."
(valueChange)="onFilterChange($event)">
</kendo-textbox>
<kendo-toolbar-button
kendoGridAIAssistantTool requestUrl="https://demos.telerik.com/service/v2/ai/grid/smart-state"
[keepOutputHistory]="true"
[aiPromptSettings]="aiPromptSettings"
[aiWindowSettings]="aiWindowSettings">
</kendo-toolbar-button>
<button kendoGridExcelCommand>
Exportar Excel
</button>
<button kendoGridPDFCommand>
Exportar PDF
</button>
</kendo-toolbar>
When will Kendo fully support Signal Forms?
In general, Signal Forms should work with any component with ControlValueAccessor, but I am noticing errors when components are relying on observables on the control (like StatusChanges)

Hi,
I'm experiencing an issue with the Kendo Grid Context Menu, when cellRowspan is active.
Reproduction:
It seems like the wrong column is being calculated when rowspan is active.
I'm on the latest Kendo version (v21.3.0).
Is this a known issue?
Thanks in advance!


Is there any interactivity that can be used with Kendo Angular Map?
Like setting the "center" property after clicking on the map!
I also have troubles with scaling to width and height 100%!
Hi,
I am not sure if is a bug or something configuration specific, but I have the following behavior in the calendar app:
I am using base range selection configuration for my kendo ui angular calendar.
After I select first date, say 15.12.2025. and i want to scroll to say june 2026, to select second date, I scroll with mouse (mac os, Sequioa 15.7.2) or touchpad, around March, calendar jumps back to December.
If I scroll on the side wheel with months to June, moment I go to the calendar to select dates, it jumps, but if I click on the June, then it doesn't jump back.
The same behavior is visible at Kendo UI demo page
App is built in angular 20 and it is a standalone component.
Is this a bug or expected behavior?
Thank you.
Vedad
Hi,
I've implemented a <kendo-grid-column-group> in my Grid and discovered this lead to warnings being plotted into the browser developer console:
You can easily verify this by the official example:
https://www.telerik.com/kendo-angular-ui/components/grid/columns/headers
-> Edit in -> Stackblitz -> Open Console
I'm working with the latest Kendo version 21.2.0 and ng 21.0.2.
Is this a known issue? Thanks in advance!

kendo 19.3.0, angular 19.2.17.
applying kendoGridToolbarFocusable to kendo-dropdownlist gives it the correct behavior to stay focused on click but this same behavior did not work for kendo-multiselect. it stays open so long as the click is held in but once released it closes. if the mouse is hovered over the dropdown that opens AND THEN released, the multiselect stays open and has intended behavior after selecting items.
kendoGridFocusable was also tried in this scenario and did not produce results.
<ng-template kendoGridToolbarTemplate><kendo-dropdownlist style="min-width:220px; margin-right:5px; margin-left:5px"
kendoGridToolbarFocusable
[data]="names"
(valueChange)="handleApplyAllValueChange()"
[defaultItem]="defaultApplyAllItem"
[textField]="'nm'"
[valueField]="'id'"
[(ngModel)]="applyAllItem"
[hidden]="isRevisedRadioButton()">
</kendo-dropdownlist>
<kendo-multiselect style="min-width:220px; max-width:220px; max-height: 140px; overflow-y: auto"
kendoGridToolbarFocusable
[data]="applyAllSecondaryList"
[textField]="'nm'"
[valueField]="'id'"
[disabled]="isApplyAllSecondaryDisabled()"
[autoClose]="false"
[(ngModel)]="applyAllSecondaryItem"
[placeholder]="'Select Secondary'"
[hidden]="isRevisedRadioButton()">
<ng-template kendoMultiSelectTagTemplate let-dataItem kendoGridToolbarFocusable>
{{ dataItem.deviationNm }}
</ng-template>
</kendo-multiselect></ng-template>
