I am trying to implement a tabstrip within another tabstrip. What I have found is that when the parent tabstrip tab title property is set using [title]="'Title'" and the child tabstrip first tab is set using ngtemplate, then the parent's first tab title gets the child first tab text appended to it.
see https://stackblitz.com/edit/angular-lwzvbp?file=app/app.component.ts
When all screen is full at events, the scroll in not working in mobile.
how can i scoll also that is display many events in screen?

My grid data is bound to an observable as follows:
protected initDomainEntityQuery() {
this.gridSettings.state.skip = 1;
this.gridData$ = this.stateChange$.pipe(
takeUntil(this.unsubscribe),
switchMap(() =>
this.dataService.getData(this.buildDomainEntityPayload())
),
map((data) => {
if(this.groupable && data.data.length > 0) {
return process(data.data, { group: this.groups });
}
else
return data;
})
} }
The problem is that the data set returned could potentially span many pages, but after the aggregation, the DataResult total is 1 page long. Is there any way of working round this?
The use case is to present the data grouped by a type field.
Thanks.


Hello,
In my app I'd like to be able of change the language of the labels in the datetimepicker dinamically (days of the week and months). I manage the localization with a custom service I made and it works for most of the app. I read the documentation and the aproach of setting the provider with an static locale_id value is ok but I need to change it in runtime.
Can you help me with this?

Hello, I would like to know how it is possible to insert a default value inside the column filter box at the ngOnInit of the component. I would like to dynamically pass a string type parameter that searches in the corresponding column for all the values contained in the grid datadource.
ngOnInit() { var doc = this.myService.docName(); // set doc name in the column of kendo grid and activate filtering}
Hello!
While understanding the Sortable component, I went across the following issue:
- I opened the example from https://www.telerik.com/kendo-angular-ui/components/sortable/ in StackBlitz
- I added a button that when clicked, should add a new Item (image-one)
- I clicked the button
- Item array was updated, but interface is not showing the new item (image-two)
Is there another way to refresh the interface, to see the items up to date?
Thank you!

Hello,
We have a requirement to implement drag and drop in TreeList component. Drag and drop should be possible within nodes(any level) and outside the component as well.
I cannot see any mention of such feature in the documentation. Is it present already or under development? When can this feature be expected?
Thanks,
Harmeet

hi,
I'm using Kendo UI for Angular Multi select. When I type in the input(inside multi select) the text is not visible but filtering works fine.
This functionality works fine in Chrome but doesnt work in IE11.
Please suggest.