Im using the jQuery autocomplete widget on an existing project and there is an option to only fire the filter event after a number of characters are typed. I dont see that option mentioned on the Angular autocomplete component. Am I missing something?
https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/data-binding/

Hello,
I am trying to use the conversational UI widget for Angular. Using the getting started instructions I created a Angular 5 application and installed the dependencies. When I run the application I get the following error:
Argument of type 'UnaryFunction<Observable<any[]>, Observable<any[]>>' is not assignable to parameter of
type 'UnaryFunction<Observable<Message>, Observable<any[]>>'. Types of parameters 'source' and 'source' are
incompatible. Type 'Observable<Message>' is not assignable to type 'Observable<any[]>'. Type 'Message' is
not assignable to type 'any[]'. Property 'length' is missing in type 'Message'.
// ... and emit an array of all messages
scan((acc, x) => [...acc, x], [])
L64: );
I have not been able to figure out why this error is occurring. Any assistance would be greatly appreciated.
Scott

Hi,
I am using Kendo Grid in Angular 4, The Grid has the functionality of Grouping as well Inline Editing in reactive forms.Could you please confirm if angular Reactive forms in faster in performance compared to Template Driven forms.Also I have searched through the existing threads on this Kendo Grid Performance issue. I have built the project in prod mode using "ng build --prod" and also used the Virtual scrolling, " [scrollable]="'virtual'"", However the performance of the grid is still slow, Is it related to the number of columns in the Grid ?(My application has 10 columns for grid).
Could you please suggest what all other factors impact the Kendo Grid , And how can I optimize without compromising on the User Experience.
Regards
K Govardhan.

I'm looking for a replacement in the new Kendo UI for Angular that provides the same capabilities as kendo.format in order to conditionally format a number or date. Does this exist?
Specifically, I have some data and a formatting string in the form of: {0:N2} or {0:yyyyMMdd} and want to format the data to a string. Previously, I used the kendo.format function, but I haven't found it yet.
Hi, I'm using Kendo UI for Angular and I'm trying to create a grid dynamically bound to an array of complex objects where I need to bind in a sort of pivot table way. This means I want to have multiple fields that are part of the hierarchy inside the object's property tree combined with several values of that field aggregated by some category/value.
But as an image says more than 1000 words please see the image attached that shows a table created in a spreadsheet representing what I want to achieve with kendo's grid.

Angular 6 Kendo ui
import { load, IntlModule } from '@progress/kendo-angular-intl';
import { registerLocaleData } from '@angular/common';
import localZhHant from '@angular/common/locales/zh-Hant';
import localZhHantExtra from '@angular/common/locales/extra/zh-Hant';
registerLocaleData(localZhHant, localZhHantExtra);
///* Loading CLDR data */
import * as likelySubtags from './cldr-data/cldr-data/supplemental/likelySubtags.json';
import * as weekData from 'cldr-data/supplemental/weekData.json';
import * as currencyData from 'cldr-data/supplemental/currencyData.json';
import * as numbers from 'cldr-data/main/es/numbers.json';
import * as timeZoneNames from 'cldr-data/main/es/timeZoneNames.json';
import * as calendar from 'cldr-data/main/es/ca-gregorian.json';
mport * as currencies from 'cldr-data/main/es/currencies.json';
mport * as dateFields from 'cldr-data/main/es/dateFields.json';
load(
likelySubtags,
weekData,
currencyData,
numbers,
currencies,
calendar,
timeZoneNames
);
providers: [AppSet, AuthGuard, DatePipe, [...appService], { provide: LOCALE_ID, useValue: "zh-Hant" }, ConfirmationService]
When I use grid <kendo-grid-column field="score" title="score" width="60" editor="numeric"> is display Error: NoLocale: Missing locale info for 'zh-Hant'.
How can set local id?
Thanks
On the date picker, how do you restrict the user from selecting past date?
Example: If today is 9/17/2018 , the datepicker should prevent user from selecting 9/16 , 9/15 ....
Thanks,
Bryian Tan
How i set the gap attribute to series elements?
Gap attribute doesn't work, but spacing works!
<kendo-chart #chart class="chart-wrapper" (seriesClick)="onSeriesClick($event)"> <kendo-chart-legend position="bottom"></kendo-chart-legend> <kendo-chart-tooltip [shared]="true"></kendo-chart-tooltip> <kendo-chart-series> <kendo-chart-series-item *ngFor="let item of DATA" [data]="item.worked_hours_month" [name]="item.worker" field="worked_hours"></kendo-chart-series-item> </kendo-chart-series> </kendo-chart>