Using the reactive forms and <kendo-timepicker>
Clicking on the 'Now' button populates the timepicker field with the local browser time. How do I change it so when when user click on 'Now', it populates the timepicker field with the UTC time?
Thanks for your time.
Hello,
Current behavior
In grid, when I use the paginator as an input it allows the user to type whatever they want in the field, meaning, it accepts
- numbers higher than available page count
- any alphabetical letters
Expected behavior:
- The input ignores the letters and when the number higher than total page count is typed (or coppied / dragged into) the value is set as the maximum page number
Code:
(in grid)
<kendo-pager-prev-buttons></kendo-pager-prev-buttons>
<kendo-pager-input></kendo-pager-input>
<kendo-pager-next-buttons></kendo-pager-next-buttons>
Thanks for any help,
Pawel
Hello,
I have a locked column. When I mouse over a cell in the locked area of the grid only the cells in the locked column are highlighted. I would like the whole row, including the area that is not locked highlighted. Can this be done with styling? Is there an event I can use to make this happen in code?
Thanks,
Scott

Hi!
Is it possible to use ngx-translate like this with the @progress/kendo-angular-l10n MessageService and the kendo-angular-messages!
An example of such an implementation would be great!

Hello,
I have a checkbox column. If I check the box, the row becomes highlighted. I would like the row to not be highlighted when the the checkbox is checked. I tried overriding a style and it worked, but it also prevents the highlight when mousing over the row. I would like the row to highlight on mouse over, but not to stay highlighted when the checkbox column is checked. How would I achieve this?
.k-grid tr.k-state-selected > td {
background-color: #fafafa;
}
Thanks,
Scott

I am following the official example of Kendo Drawer component for Angular. First, I declared the variable
public items: Array<DrawerItem> = [];
Next, in constructor I have the following lines
constructor(private router: Router) {const routes: any[] = router.config; this.items.push({ text: route.text, path: route.path ? route.path : '' });});}It says that 'path' does not exist in type DrawerItem. Why? All Kendo examples are referencing to this property. Also, router does not contain the 'text' property. I cannot map routes with the Drawer component.
The official DrawerItem doc is at https://www.telerik.com/kendo-angular-ui/components/layout/api/DrawerItem/. It seems that DrawerItem doesn't contain the 'path' property! Somehow the examples are outdated or I'm making mistakes in undarstanding.
Thank you.
I just recently updated to the latest version of the editor and the ngModel binding does not work anymore. I modified the example from the documentation to demonstrate
https://stackblitz.com/edit/angular-yrfgmv?file=app/app.component.ts
If you change the value in the form, the binding "content" variable does not change.

Hi! I want to use the kendo grid with remote data binding and the filter menu option [filterable]="menu".
But the filter icon is not displayed!
https://stackblitz.com/edit/angular-cyertp
Hello,
I am using virtual scrolling with a kendoGridCellTemplate that has a checkbox in it. If I check some of the boxes and scroll, the pageChange event fires and I grab new data. The new checkboxes are showing checked. They should not be checked. How do I make sure the data is correct when virtual scrolling? I was looking here PersistingTheSelection thinking I should be able to do something similar to keep track of my selections but I could not figure it out. Here is a simple example of my cell template.
<ng-template kendoGridCellTemplate>
<input type="checkbox">
</ng-template>
Thanks,
Scott