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
Hi,
I have implemented a drawer with a router-outlet inside and when I click on the back or forward buttons in the browser the route changes but the selected item in the drawer stays the same.
Furthermore, I have seen that the same issue is presented in the example in the documentation.
https://www.telerik.com/kendo-angular-ui/components/layout/drawer/routing/
Regards