Hi,
For this link:
https://www.telerik.com/kendo-angular-ui/components/grid/filtering/reusable-filter/
I would like to use the example in "Row Filtering" to discuss, which is actually the first runnable example in this page
The "Category" column uses a custom drop-down filter. Is it possible to add a normal clear filter button to clear the filter conditions, just like the build in filter templates do?

Hi there
I'm trying to create a scattered chart with Angular-Kendo, and have some challenges with zooming.
The current challenge is that upon zoom in by area selection with the mouse.
It does the zoom perfectly, besides the fact that it ruins the axis numbers.
I created an example here - https://dojo.telerik.com/@moshic/APUZumug
[not angular oriented, but very clear].
Simple example - you can try to zoom with mouse drag.
Already tried the [labels]= "{format: '{0: n3}'}", etc... but it didn't work...
Thanks for any help.
When you have nested groupings and have aggregates on some of the columns, is there a way to only show aggregates on a specific level of grouping? I did find this example for jQuery where the footer is hidden by changing the CSS class based on the number of records, but this did not work for me. Is there any way to find out the grouping title and only show aggregates based on that?
See attached picture - I am wanting to only show the inner-most level of aggregates with the green check mark and remove the rows marked in red.

See https://angular-dxxw7p-hthub5.stackblitz.io for a simplified example
I've customized the grid column header kebab menu using kendoGridColumnMenuTemplate - it's pretty close to the default column selector except that there is a reset button that restores the original hidden state for each column.
What I'm seeing is that the menu closes when you hide a column but doesn't close when one is added. How can I cause this menu to persist while the user performs any number of column selection actions?

Open up a window by this code, then throw a error "jit_nodeValue_3(...).fixedBoxOffsetTop is not a function"
onEditHandler({ dataItem }) {
document.body.style.overflow = "hidden";
this.bgOverlayOpened = true;
this.params = {id: dataItem.stockId, isNewRecord: false};
this._util.openpopup();
}

Hi,
I'm trying to make a grid with a horizontal scrollbar but it doesn't work. I've read the documentation and understand that scrolling is enabled by default and if my columns have a set width and their sum is more than the width of my grid, the scrollbar should show up. But unfortunately it doesn't.
I tried copying and pasting the example from the documentations here: https://www.telerik.com/kendo-angular-ui/components/grid/scroll-modes
I don't know of and don't see any styles that might interfere with that.
Any ideas?
Tahnks
I'm using the code as below to show the window popup
public showValuationReport(dataItem) {
document.body.style.overflow = "hidden";
this.bgOverlayOpened = true;
const windowRef = this.windowService.open({
title: 'Valuation Report',
content: PaperworkViewerComponent
});
const window: PaperworkViewerComponent = windowRef.content.instance;
const reportOptions = {
reportType: '',
reportName: 'VehicleInfoSheet',
stockId: dataItem.stockId,
branchId: dataItem.branchId,
}
window.reportOptions = reportOptions;
windowRef.result.subscribe(result => {
if (result instanceof WindowCloseResult) {
this.bgOverlayOpened = false;
document.body.style.overflow = "";
} else { }
})
}
I was disable the scrolling after open the window
But still got that bug if user tick outside the window the back to drag them
Và vấn đề là

I'm currently using the jQuery DropDownTree since this component is not yet available in the Kendo Angular library. However, I need to create multiple DropDownTree components dynamically in an *ngFor loop in the template. I'm not sure how to do that since initializing a DropDownTree requires you to explicitly specify the element that will host it. Is this possible with DropDownTree?
I had originally created a support ticket for this but was told to ask here instead.
I combined a grid and a chart on an html page and tried to export to PDF. When I try to export, the legend overlaps. Here's the plunker: https://plnkr.co/edit/Dpg3ZbTBPMuiKi0BFPBP?p=preview