Hello,
When I run the tree view checkboxes example from your own site (https://www.telerik.com/kendo-angular-ui/components/treeview/checkboxes/),
it works properly in Chrome.
But in Edge there's this issue:once you only check a single children of a node, hence making its parent's state Indeterminate, clicking again on the parent doesn't update the children. While in Chrome all the children are selected, in Edge nothing happens.
From my testing, it seems like "checkedChange" event is not fired in Edge when clicking on an Indeterminate node.
What can be done? I use this component in our site, and we must support Edge users as well.
I see the example for the Reusable Custom Filter with a DropDownList do you happen to have a similar example with a multiselect list.
I am attempted to create a multi select reusable filter to be used in a grid menu filter.
https://www.telerik.com/kendo-angular-ui/components/grid/filtering/reusable-filter/
I have a kendo-grid with 3 columns editable out of the list of 25 columns displayed.
The grid has a cellClick event which sends in the column and columnIndex:
(cellClick)="editClick($event)"
public editClick({ sender, column, rowIndex, columnIndex, dataItem }): void {
this.editHandler({
dataItem: dataItem,
rowIndex: rowIndex,
sender: sender,
isNew: false
});
}
public editHandler({ sender, rowIndex, dataItem }: EditEvent): void {
if (this.formGroup && !this.formGroup.valid) {
return;
}
this.formGroup = formGroup(dataItem);
this.editedRowIndex = rowIndex;
console.log('editrowindex =' + rowIndex);
console.log('edited CDM_Service_Code =' + dataItem.CDM_Service_Code);
sender.editRow(rowIndex, this.formGroup);
When I call sender.editRow

The following code is is not displaying the item template correctly with check boxes. If I don't use the item template it displays the data correctly.
<kendo-multiselect style="width: 250px;" [data]="userOrganizations" [textField]="'name'" [valueField]="'partner_oid'" placeholder="State/Municipality" [(ngModel)]="selectedOrganization" [autoClose]="false" [popupSettings]="{ width: 250, height: 350}"> <ng-template kendoMultiSelectItemTemplate let-dataItem> <input type="checkbox" class="k-checkbox" [checked]="isItemSelected(dataItem.name)"> <label class="k-checkbox-label">Name{{ dataItem.name }}</label> </ng-template></kendo-multiselect>
Hello,
I need to set placeholder in multiselect with kendoMultiSelectSummaryTag. its not working .
Please check this stackblitz demo and update it with new code.
https://stackblitz.com/edit/angular-hhk2wg?file=app/app.component.ts

Hi
I am using combobox . I need to height of kendoDropDownListNoDataTemplate . How can I do It ?
Please update the code in stack blitz
https://stackblitz.com/edit/angular-lgj9v5?file=app/app.component.ts
Thanks
Nilesh Zala

I have a enum type field -(eg: CustomerState). And I have binded to kendo grid to dispay the text value of the enum as below,
<kendo-grid-column field="customerState" title="{{'LABELS.customerState' | translate}}" width="100">
<!-- <ng-template kendoGridCellTemplate let-dataItem>
{{ dataItem.customerState | enumTranslate: customerState | async }}
</ng-template> -->
<ng-template kendoGridCellTemplate let-element>
{{CustomerState[element.customerState]}}
</ng-template>
</kendo-grid-column>
I have set filterable="menu" in the grid. So I see a default filtering option in the UI page with Contains search as default.
Problem is when I search the text value of the field(eg: Inactive state), I get no results. but when I search as 0 or 1 or 2, I get the filtered result.
So is there any easier alternative to filter based on a particular enum value from all list of records in the grid?
I have a question concerning the [kendoGridBinding] attribute and the [filterable]="menu" attribute.
Can you bind a Kendo Grid using the [kendoGridBinding] attribute to an service Api call that returns an observable?
I have my grid currently working with the [data] attribute using an observable but every time that I switch it to the [kendoGridBinding] attribute to be able to use advanced features my console throws errors and the grid data never loads.
Here is the current list of attributes for my grid definition that seem to not work. Note I am attempting to do paging, sorting and filtering server side using a WebApi call.
<kendo-grid [kendoGridBinding]="schedulesToDisplay"
[filterable]="menu"
[style.height]="'100%'"
[resizable]="true"
[sortable]="{
allowUnsort: false,
mode: 'single'
}"
[filter]="state.filter"
[pageable]="true"
[pageSize]="10"
[skip]="state.skip"
[sort]="state.sort"
[rowClass]="rowCallback"
(dataStateChange)="dataStateChange($event)">