Hello,
If you look at this example: https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/#toc-events, you will noticed that when someone click the clear all button (x) the blur event is raised.
It's possible to cancel this blur event?
It's possible to have somehow the same behavior like in the combobox case : https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/#toc-events ?
Thanks,
Alex

Link and meta tags pasted from MS Word are missing the backslash when copy and pasted from MS Word.
Copy a link from MS Word and paste into editor, the link and meta closing tags are missing the backslash. '>'
Paste the same link into the AngularJS version and the link and meta closing tags are correct. '/>'
Hello,
I am attempting to bind the ComboBox to an array of complex objects. For this, the "keyField" and "valueField" properties are required (valuePrimitive is set to true, in case that is relevant).
This works if I do not try to bind to those properties:
<kendo-combobox valueField="myField" textField="myTextField" ... ></kendo-combobox>
However, if I try to use one-way binding:
<kendo-combobox [valueField]="myFieldBinding" [textField]="myTextBinding" ...></kendo-combobox>
I get the following error:
"Expected textField and valueField options to be set. See http://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/#toc-bind-to-arrays-of-complex-data"
I am 100% sure that actual string values are being provided for "myFieldBinding" and "myTextBinding". Further, I tested it as follows as well:
<kendo-combobox [valueField]="'hardcodedStringValueField'" [textField]="'hardcodedStringTextField'" ...></kendo-combobox>
And I get the same error.

Hi,
We have an application that has to be read in both Arabic and English which has a toggle that changes the localization between the two languages.
When the language is set to Arabic the date format changes from Gregorian to Hijri but we need the date format to always be Gregorian even when in Arabic.
Is there a way to intercept this in the localization and/or set a Gregorian format on the date tag that won't be overridden when the language changes?
Example of the date input field being used:
<input type="text" kendoTextBox class="form-control" value="{{currentContact?.dateOfBirth | date :'shortDate' }}" readonly="readonly">

From the article https://www.telerik.com/kendo-angular-ui/components/grid/data-operations/filtering/built-in-template/#toc-hiding-row-filter-operators, it seems that I can specify the available filter operators for a grid column.
With the code below, should I expect to only see 'Contains' and 'Is Equal To' in the the filter menu? I tried but the filter menu shows all filter operators.
<kendo-grid-column field="ProductName" title="Product Name">
<ng-template kendoGridFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
<kendo-grid-string-filter-menu [column]="column" [filter]="filter" [filterService]="filterService">
<kendo-filter-contains-operator></kendo-filter-contains-operator>
<kendo-filter-eq-operator></kendo-filter-eq-operator>
</kendo-grid-string-filter-menu>
</ng-template>
</kendo-grid-column>
Thanks for any clarification.

Hello,
Our requirement is text should be wrap when user type long text in conversational UI input.
Currently it's showing in single line which make poor user experience .
Please provide some work around in stackblitz demo.
Thanks

When a filter is active in a column header the background colour changes to red by default.
I would like to be able to set it to a different colour depending on the data present in the filter. Is there a way to do this?
Thanks

Hi Team,
I am using angular Kendo Grid. I introduced edit option in the grid and I have requirement like edit the text with 400 chars in the gird column .
As default while editing the row I am getting Textbox for all columns but here I want textarea for the particular column then I can easily enter the text
Can you please help me on this?
Thanks
Sankar


Hello,
I am working on a grid component and I would like to enter edit mode (edit button is outside of the grid) then turn every row in the grid to edit table.
There is only one column is allowed for editable and it's a date field. So, I now create an edit template.
<ng-template kendoGridEditTemplate let-dataItem let-formGroup="formGroup"> <kendo-datepicker [formControl]="formGroup.get('actionDate')" [min]="mindate" [max]="maxdate" class="calendarstyle"></kendo-datepicker></ng-template>
When I add an onclick to the button outside the grid, I am using this.grid.editRow(index, formgroup) in order to make the row editable.
this.grid.editRow(rowIndex, this.formGroups[rowIndex]);
However the editRow makes/fires an DataStateChangeEvent and it makes the scroll bar moves.
The story behind is that I have a tons of records with no actual page and I am using data state change to just skip rows.
public dataStateChange(state: DataStateChangeEvent): void { this.gridView = process(this.data, this.state); }
Is there anyway to make the multiple editable rows better?
Can you also suggest the life cycle of the grid / state changes, please?