Hi, can we use directives or something similar to change the appearance of the Kendo-Grid like
<kendo-grid NewApparenceDirective [kendoGridBinding]="data()">
I need to create a reusable, very lightweight grid.
Removing the background (set it transparent), removing some borders, changing text size, and so on.
What is the way to accomplish and reuse it on a lot of our components
Thanks
how to change the click function of the ellipsis in kendo ui kendo-scheduler-month-view?
i need to change the click function of the ellipsis on the shown screenshot below:
<kendo-scheduler
[resources]="[]"
[kendoSchedulerBinding]="events"
[(selectedViewIndex)]="schedulerView"
[slotClass]="getSlotClass"
[selectedDate]="selectedDate"
[slotDivisions]="1"
[selectable]="true"
[isSlotSelected]="isSlotSelected"
(slotDragStart)="onSlotDragStart($event)"
(slotDrag)="onSlotDrag($event)">
<kendo-scheduler-month-view [eventHeight]="18" [eventClass]="getEventClass">
<ng-template kendoSchedulerEventTemplate let-event="event" let-resources="resources">
<ng-template *ngTemplateOutlet="eventTemplate; context: { $implicit: event.dataItem }"></ng-template>
</ng-template>
</kendo-scheduler-month-view>
</kendo-scheduler>
<kendo-scheduler
[resources]="[]"
[kendoSchedulerBinding]="events"
[(selectedViewIndex)]="schedulerView"
[slotClass]="getSlotClass"
[selectedDate]="selectedDate"
[slotDivisions]="1"
[selectable]="true"
[isSlotSelected]="isSlotSelected"
(slotDragStart)="onSlotDragStart($event)"
(slotDrag)="onSlotDrag($event)">
<kendo-scheduler-month-view [eventHeight]="18" [eventClass]="getEventClass">
<ng-template kendoSchedulerEventTemplate let-event="event" let-resources="resources">
<ng-template *ngTemplateOutlet="eventTemplate; context: { $implicit: event.dataItem }"></ng-template>
</ng-template>
</kendo-scheduler-month-view>
</kendo-scheduler>
Is there a built-in Kendo form class for a grid-type layout? I know that the GridLayout component is available, was hoping that there was something built-in already that would be more straightforward to implement.
Thanks
Hello,
I'm working on a project where we have about 100 columns and rows can exceed 1000 rows.
The users want to enable CTL and shift selection but it doesn't work and I have 2 behaviors:
1- If I click quickly and simultaneously CTL and Select row it's works.
2 - If I start holding the CTL button and try to select row nothing happen and it takes long time to be selected.
can you tell me what the problem is exactly and if there is a bypass for it
Best regards
import { Component, AfterViewInit, OnInit, ViewChild } from'@angular/core';
Is it possible to bind the kendo angular date controls directly against a luxon date object?
I tried the following:
A direct binding results in a compile error:
Error in src/app/app.component.ts (28:37)
A binding against a Javascript date, on the other hand, works
Is there also a special adapter for the Kendo DatePicker like for Angular Material Date Components (@angular/material-luxon-adapter)?