Dear Supporter,
i tried to use the
@progress/kendo-angular-gauges@4.1.0
in combination with the bootrap theme version
@progress/kendo-theme-bootstrap: 4.36.0
According to your documents, the GaugesModule supportes the theming versions >4.19.
Unfortunately the gauge don“t get colorized, so that it is invisible.
I prepared a StackBlitz demo where you can check its behaviour (stackblitz demo).
If i use the css stylesheet link in the index.html
<link rel="stylesheet" href="https://unpkg.com/@progress/kendo-theme-bootstrap@4.36.0/dist/all.css"/>the gauges are visible.
If i use all.scss
@import "~@progress/kendo-theme-bootstrap/scss/all.scss";
in the styles.scss instead of the link, the gauges dissapear.
I am looking forward to get the gauges working with the theme version 4.36.0 and the .scss stylesheets.
Thank you in advance.
best regards
Hello, I'm having trouble overriding the grid filter menu.
The issue I'm trying to resolve is combining operators is null + is empty (and is not null + is not empty) - from the user's point of view, there is no difference between value being null or an empty string. For the user it's just blank.
I tried to follow the documentation, to omit the is null/is not null operators, but then all the labels inside the custom string filter popup are completely missing. The other (default) string filter labels are shown as usual. Also - how can I replace the default string filter with my custom filter, so that it affects all the grids in my application?


Hi,
I report the behavior of the responsive pager configuration for kendo grid angular for an empty grid (when there is no records data, it display's an empty dropdown). I wonder if is it a bug or a normal behavior ?
Thank you.

When we call Kendorangepicker, it enables 2 input fields - start and end dates. Is it possible to open kendorangepicker from single input field and once the ranges are selected, dates should return to the input field like 01-01-2019 - 20-09-2019.
Thanks,
Abby Ms
How to open and close the detailtemplate programmatically?
I have 3 columns, and therefore 3 cells in which I have a button.
At the click of the button I would like to open / close the detail template
Without having the + icon on the left
<kendo-grid-column field="info" title="info">
<ng-template kendoGridCellTemplate let-dataItem>
<button mat-button (click)="clickInfoCell()">
</button>
</ng-template>
</kendo-grid-column>public onCellClick(event: CellClickEvent){
this.myEvent= event;
}
//toggleTemplate
public clickInfoCell(){
//Close previous template
//Open detail template
}thanks,
Alex
Hi there,
I have an issue using the TreeList component where all the rows are slowly going out alignment with the column headers. I am setting explicit widths on each column. Also this happens regardless of whether I enclose the TreeList in a <div> or not. How can I resolve this issue?
See attached pic for how this looking.
Thanks
How to get dataitem at doubleClick event on Kendo Grid?
Hi,
<kendo-grid
#myGrid
[data]="gridData"
[selectable]="true"
(selectionChange)="onSelection($event)"
(dblclick)="doubleClickHandler(myGrid, $event)">onSelection(event){
event.selectedRows[0].dataItem
}
doubleClickHandler(grid, event){
//get dataItem like onSelection function
}
Hi all!
I want to create a area chart with dash-line fill. (mistake in header)
May you help me with that? Big thanks!
What i want: https://prnt.sc/kU8pjFzvfyxF
What i have: https://prnt.sc/5hK7TeXQR12r
