Grid retained as follows:
this.state = gridSettings.state;
this.grid.columns = gridSettings.columnsConfig.sort((a, b) => a.orderIndex - b.orderIndex);
After that "Export All" fails as the grid.Coulmns are changed to Array. If the grid.columns are QueryList it is exporting.
Hi,
We are using KendoUI AutoComplete for Angular6 like below.
<kendo-autocomplete #autocomplete style="width:100%" [(data)]="items" [valueField]="'DESCR_FULL'"
[suggest]="true" placeholder="Digita almeno 3 caratteri..." [(ngModel)]="selectedsedetechnica"
(valueChange)=SelectedAssetFromSTCombo($event) [filterable]="true" (filterChange)="handleFilter($event)">
</kendo-autocomplete>
valueChange event is fired even when the AutoComplete is tabbed out / blurred.
But we want to fire the "valueChange" event only when the user selects any one of the AutoComplete suggestions (by clicking on any one of the suggestions (or) by selecting any one one of the suggestions with keyboard ENTER key.). We don't want to fire this event when Aucomplete lost focus (blurred).
Because the autocomplete suggestions will vary based on the user. We don't want to process any data that is not coming from AutoComplete.
How to stop firing "valueChange" event when AutoComplete is tabbed out (or) lost focus
Thanks in advance,
Rajesh

Hello Team,
I am working on a task in which we need to group our data according to the column, also we need aggregate count of record which comes under group.
so the problem is that we have around 1 lakh record in database so, for exact count of record we need to send all record to client.
so, loading time is very slow here or browser is going to be hang.
can we call custom component under group as a child in kendo grid so that we can do paging if there is 1000 record under one group.
Please help.
Thanks
Ritesh

Hi,
I am looking for option to programatically select value in combobox. I have array of objects binded to data. I have tried valueChange.emit(), selectionChange.emit(), .value changing, and changing selectedValue binded to ngmodel... nothing works.
<kendo-combobox
#searchAreaCombobox
id="searchAreaCombobox"
[filterable]="false"
[data]="listItems"
class="k-combobox"
[valueField]="'id'"
[textField]="'caption'"
[allowCustom]="false"
[placeholder]="'searchAreaDropDown.placeholder' | translate"
[(ngModel)]="selectedValue"
(valueChange)="changeSearchArea($event)"
>
</kendo-combobox>

Hi, There
I want to override keyboard accessibility feature in date picker. i am using it in angular 9.
can i do this?
if yes then how?

Hi, any one know how to dynamically re-position the Kendo-window in Angular 6?
When I move the Kendo-window it goes below the navigation bar. I would like to prevent that.
Regards.
Hi Team,
Need close icon on each tab, when clicking on close icon need to close the current tab...
Thanks in advance..
Regards
Akarsh kp

So, I've faced with issue in my project where a users can't select date on filter menu in grid component on mobile device.
My code has the same peace of code from https://www.telerik.com/kendo-angular-ui/components/grid/filtering/reusable-filter/ -> 'Filter Menu with Popup' section.
The StackBlitz has the same failure behavior.
Based on my investigation, I've figured out that kendo can't apply focus on date input after selecting date on calendar popup on mobile devices.
