It looks like in the documentation there is support for generating workbooks with multiple sheets, but it is not clear to me how to do that. Is there a declarative way that I am missing like
<kendo-excelexport>
<kendo-excelexport-sheet name="sheet1">
...columns for sheet 1
</kendo-excelexport-sheet>
<kendo-excelexport-sheet name="sheet2">
...columns for sheet 2
</kendo-excelexport-sheet>
</kendo-excelexport>

Hello Telerik
The Conversation UI is binded inside each kendo tabs strip , each Conversation UI initially load 10 messages, when scroll reach top, new messages should bind to existing feed. each tab's Conversation UI should bind new messages only when scroll reach top and bind new messages for respective tab's conversation Ui's feed .
How can I achieve this customization within current available API.
Please see the below stack blitz demo and update it
https://stackblitz.com/edit/angular-x7vrdm?file=app%2Fapp.module.ts
Please watch loom video for more details
https://www.loom.com/share/4098c8839df142acaf005a231f267827

When using virtual column mode, virtualColumns = true / scrolling = "virtual" in conjunction with grid state caching (both based on the How To examples), and the grid is embedded inside of a tabstrip (which itself implements load on demand directive based How To example for tabstrips), the grid doesn't seem to restore, i.e. show, the grid state until user clicks on another tab and then clicks back... Wondering if manually forcing grid UI refresh will restore the cached state.
How to pro grammatically force UI refresh of grid?

My notifications are appearing underneath my grids. How do I get them to show up on top? Image demonstrating the problem is attached.
I am using Kendo grid and kendo export to excel feature with angular 7.
Export works fine when for fewer number of records but it does not work when number of rows are higher usually greater than 27000 rows.
This problem is only with Chrome. It works fine with other browser like Firefox. With Firefox it exports more than 300,000 record without any issue.
Can you please suggest some solution or reason why it may be failing for chrome only.

Hello,
I am trying to incorporate the Tooltip into a project and I can't seem to get it to work. I copied the exact same code from your demo.
https://www.telerik.com/kendo-angular-ui/components/tooltip/default-conf/
I have this in my app Module
import { PopupModule } from '@progress/kendo-angular-popup';
import { TooltipModule } from '@progress/kendo-angular-tooltip';
Imports I have the following
imports: [
CommonModule,
BrowserModule,
BrowserAnimationsModule,
AppRoutingModule,
HttpClientModule,
FormsModule,
SharedModule,
PopupModule ,
TooltipModule
],
This is the tooltip - just like your demo
<div kendoTooltip style="text-align: center; padding-top: 10px;"><button class="k-button k-primary" title="Saves the current document">Save</button><button class="k-button" title="Discards all changes">Cancel</button></div>
I get no errors, none. I installed the tooltip using ng add @progress/kendo-angular-tooltip
Thanks for your help
Joe


I have a grid with a custom column:
<kendo-grid-column field="Category" title="Category" width="200">
<ng-template kendoGridCellTemplate let-dataItem>
{{ dataItem.Category.CategoryName }}
</ng-template>
</kendo-grid-column>
When using the default filtering, I get a type error ((a || "").indexOf is not a function). I am assuming it is due to trying to filter on the Category object and not the Category.CategoryName string value.
How can I setup a kendoGridFilterMenuTemplate template so that it will just filter on the string value that ends up in the column? Do I have to have a custom filter?
Thanks,
Tim