Steps to reproduce :
https://stackblitz.com/edit/angular-z9ufvcjg?file=src%2Fapp%2Fapp.component.ts
Add kendo-calendar component to page and set size to small
<kendo-calendar #calendarInfinite type="infinite" size="small"></kendo-calendar>Open page containing calendar componet
Click today
Press down arrow on keyboard serveral times.
When no scrolling is needed, the focussed date is displayed correctly:
When down arrow is pressed some more times, the callendar component scrolls to the wrong position, so that the focussed date is not, or only partilally visible:

I have an angular component with a grid that is group by three properties.
It is much like this basic kendo grouping example.
If I expand some groups and use page down. Then when i use arrow up/down fokus is still where i pressed page down.
The grid should set fokus on the next page when i press page down. This seem like a simple feature but I havent found a good simple way of doing this.

Hi,
The treeview filter does not seem to work with drag&drop functionality :
https://stackblitz.com/edit/angular-zskhyucj?file=src%2Fapp%2Fapp.component.ts
Regards,
Julie

hi
i wanted to apply "zh-cn" intl in my angular project.
1) i ran ng add @progress/kendo-angular-intl
2) at my app.module.ts
import { IntlModule } from '@progress/kendo-angular-intl';
import '@progress/kendo-angular-intl/locales/zh';
i can't find zh-cn on my node_modules local folder.
i got the below error:
./src/app/app.module.ts:20:0-49 - Error: Module not found: Error: Can't resolve '@progress/kendo-angular-intl/locales/zh' in 'O:\_Hcsms\src\hcsms.solution-angular-client\src\app'
btw, i did the above stesp after reading the below web page:
https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/loading-data
can you please help?
thank you.





Hi,
I use MessageService for translation Kendo components, it works properly, but for some reason after the application starts, 'No-translation found for ...' warnings appear in the console.
combobox.component.html:3 No translation found for "7708502966028483300" ("NO DATA FOUND" - "kendo.combobox.noDataText").
combobox.component.html:3 No translation found for "2025597431468961462" ("clear" - "kendo.combobox.clearTitle").I use Nx(21.4.1) monorepo with Angular (20.1.8) and Kendo (20.0.3).
How can I solve the issue so that the warnings don't appear?
Thanks!
export const translations: () => Record<string, string> = () => ({
'kendo.textbox.clear': $localize`:@@component_textbox_clear:Törlés`,
'kendo.label.optional': $localize`:@@component_label_required:Kötelező`,
'kendo.combobox.noDataText': $localize`:@@component_combobox_noDataText:Nincs találat`,
'kendo.combobox.clearTitle': $localize`:The title of the clear button.@@component_combobox_clearTitle:Törlés`,
});import { Injectable } from'@angular/core';
import { MessageServiceasKendoMessageService } from'@progress/kendo-angular-l10n';
import { translations } from'../const/translation';
@Injectable({
providedIn: 'root',
})
exportclassMessageServiceextendsKendoMessageService {
publictranslations: Record<string, string> = translations();
publicoverrideget(key: string): string {
returnthis.translations[key] ?? key;
}
}
//app.config.ts
export const appConfig: ApplicationConfig = {
providers: [
{ provide: KendoMessageService, useClass: MessageService },
],
};