Hi Team,
Kendo Angular Grid --> How to Export the entire records to excel instead of page level
I have Kendo Angular gird and Export to Excel option as well, while doing export to excel it is download only current page not entire records.
Can you please guide me how to download export to excel with entire records?
Note: if I select page size manually to 1000 (example) download all the records, here our requirement is while clicking on Export to excel itself download all records.
Thanks,
Sankar

On selecting a panel bar item I am opening up a modal which in turn returns back a true or false.if true I am displaying the new item .if false I am staying on the previous item.but in case of false scenario even if I am staying at the previous item, as the next item was clicked ,the focused and selected property of that item is getting set to true and that of the previous item to false.how do I revert the selected and focused property if I don't display the itemcontent even if the user clicks on it.

Greetings.
Globalization functionality has been added in a project I am working on.During development, it was discovered that the Portuguese locale ("pt-pt") is not using the correct format for decimals. According to https://en.wikipedia.org/wiki/Decimal_separator, portuguese format should be "1 234 567,89", but the format looks like this "1.234.567,89". Looks like Brazilian format ("pt") is being used instead of Portuguese ("pt-pt").
Stackblitz example with kendo-numerictextbox : https://stackblitz.com/edit/angular-grmrwk?file=app/app.module.ts
Can you please clarify if this is normal behavior?
Thank you.

In jQuery kendo grid we were able to set the default filters from filterable operators.
https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/filterable.operators.date
With that we could set all the date filters search for a range from one date to another
I am trying to do the same from the directive (and not from the HTML, so please try to answer for that) with something like this:
gridSettings: GridSettings = {
state: {
skip: 0,
take: 10,
// Initial filter descriptor
filter: {
logic: 'and',
filters: []
}
},
columnsConfig: [
{
field: 'publicationDate',
title: this.translateService.instant('legislation.publication_date'),
filterable: [{ operator: 'gte' }, { operator: 'lte' }],
filter: 'date',
format: '{0:dd/MM/yyyy}',
type: 'date',
hidden: false,
width: 120
}
...
I tried on filterable of the column but I also tried on the general filter: { filters: [ ... ] } without success.
1) Does Angular KendoGrid support this to set the default criteria for the filters for each column or type like jQuery filterable operators (string, number, date) ?
2) And a second question regarding this european format I am using for the dates on my date columns. When I apply a filter like I am doing in the attached screenshot, it's not working
Hi,
Is there any idea why the angular treeview control is behaving like this which searching in the attached image.
Used the below code to search the treeview
https://www.telerik.com/kendo-angular-ui/components/treeview/how-to/filtering/
Html Treeview
<kendo-treeview
[nodes]="publishedKnowledgeAccounts"
[children]="children"
[hasChildren]="hasChildren"
textField="Title"
[isExpanded]="isExpanded"
[isChecked]="isChecked"
(checkedChange) = "checkedChange($event)"
(collapse)="handleCollapse($event)"
(expand)="handleExpand($event)"
[kendoTreeViewCheckable]="checkableSettings"
[(checkedKeys)]="checkedKeys"
>
</kendo-treeview>
Thanks
Rajeev

Hi,
I am trying to use a kendo-formfield that contains a list of radio buttons that are dynamically generated by an ngFor. But it errors out with:
The `kendo-formfield` component should contain only one control of type NgControl with a formControlName.
If I define the radio buttons statically in the html template then it works. So I think this is a bug.
Doesn't work:
<kendo-formfield>
<kendo-label text="Document type"></kendo-label>
<ul class="k-radio-list">
<li class="k-radio-item" *ngFor="let documentType of documentTypes">
<input type="radio" #documentType [value]="documentType.id" kendoRadioButton formControlName="documentType" />
<kendo-label class="k-radio-label" [for]="documentType" [text]="documentType.name"></kendo-label>
</li>
</ul>
<kendo-formerror>This field is required</kendo-formerror>
</kendo-formfield>
Works:
<kendo-formfield>
<kendo-label text="Document type"></kendo-label>
<ul class="k-radio-list">
<li class="k-radio-item" >
<input type="radio" #documentType1 value="documentType1" kendoRadioButton formControlName="documentType" />
<kendo-label class="k-radio-label" [for]="documentType1" text="documentType1"></kendo-label>
</li>
<li class="k-radio-item" >
<input type="radio" #documentType2 value="documentType2" kendoRadioButton formControlName="documentType" />
<kendo-label class="k-radio-label" [for]="documentType2" text="documentType2"></kendo-label>
</li>
</ul>
<kendo-formerror>This field is required</kendo-formerror>
</kendo-formfield>
Of course we want dynamic data instead of hardcoded values! So can this please be fixed?

How do I format kendo date picker to include the AM/PM designator? A format string of "MM/dd/yyyy h:mm tt" renders as "11/20/2020 2:09 tt". The "tt" has not been replaced with AM or PM. This is for an angular 10 project with typescript. Kendo version "kendo-angular-dateinputs" is 4.4.0 according to my package.json. It was installed using the instructions here: https://www.telerik.com/kendo-angular-ui/components/dateinputs/.
