Hi there,
By default the control removes the selected tag if a user selects the same value from the list. There is a way to keep the selected value tag if we allow custom value entries. Is it possible to keep duplicate value tags as selected, but NOT allow custom value input?
Thanks,
Anthea
Is there a way to style the background color of events depending on the type of event? I know i can globally set the event background colors using something like this
.k-event{background-color: #d5d5d5;}
but this doesn't help when different types of events have different colors. I would imagine some type of class attribute on the SchedulerEvent object would achieve this but it doesn't exist. Is there any work around for this?

How to achieve the same funtionality in Angular 5?
https://demos.telerik.com/aspnet-ajax/tabstrip/examples/functionality/scrolling-and-multi-row-tabs/defaultcs.aspx

Hi,
I have a kendo-window with a grid and other text component in it. I have a requirement where I need to have a fixed height say 450 px and width of 850px.I need to be able to resize horizontally but the height should not be resizable.
Is this achievable?
If I set the [resizable] attribute to false, then I cannot resize the kendo-window at all.
Is re-sizing only horizontally supported/ If so how can that be done?
Any help is greatly appreciated.
Regards,
Jyothi
HI,
I have a requirement that the kendo-window need to have a solid black border. I can acheive this by setting the following style in css
.hist-window{
border: 2px solid rgb(44, 11, 192) ;
}
And applying this style to kendo-window.
<kendo-window #kendoWinfoInstance class="hist-window" title="WorkFlow" *ngIf="opened" (close)="close()"
[width]="850" [minHeight]="450" [resizable]="true"
The problem is, the boarder appears only on focus. I need this border to remain even when the window is out of focus. How can I achieve this?
Regards,
Jyothi
Hi,
Is it possible to have different sizes of sortable items within the same sortable component?
[itemStyle] seems to apply to all items, but curious to know if it is possible.
/Flemming
kendoGridEditTemplate is ignored if the grid data has only one row.
See my demo: https://angular-faioq7.stackblitz.io
You have to click twice on the cell to reach the default editor within the stackblitz demo.
In my local project happens this even on the first click.
>1 rows work fine.
We have a couple of questions regarding the scheduler component:
- What is the recommended way of changing/overwriting CSS classes defined by Kendo (like .k-scheduler-table etc.)? Is it possible without setting ViewEncapsulation.None?
- Is there a way to define long time slots with a background color, similar to the scheduler control in WPF? We can define a custom kendoSchedulerTimeSlotTemplate but this has a couple of drawbacks: It is only one cell of the table, we can't render a text in the center of the slot and there is no access to the style of the surrounding element, which sets a padding and a height)
- How can we set the background color of a whole day in the day/week view?
- Will it be possible to set a (vertical) zoom via data-binding in the future?
- How can we set working hours independently for each day in the week view?
- How can we select the days to show up in the week view (e.g., Monday, Wednesday, Friday)?
- How can we translate the "TODAY" text (written in uppercase in the popup calendar that appears when clicking on the current date in the scheduler)? Setting <kendo-scheduler-messages today="Heute"> does not work here, it just translates the text on the button.
- We use the currentTimeMarker with the following settings: {enabled: true, updateInterval: 60000}. But it updates itself far more often (several times per second). How can we achieve that it updates just once per minute?
If you have a start/end time that does not include the current time then the current time marker will give the schedule odd behavior.
https://stackblitz.com/edit/angular-jrvxwy
So for example if the start/end time is 8:00AM - 10:00AM but the current time is 3:00PM.
Sometimes there is a red arrow that locks to the top of the scheduler. I have also seen the the issue create a large whitespace below my calendar with a red arrow/line underneath. Setting the [currentTimeMarker]="false" solves the issue. I would expect that the marker would just not show anywhere if the time range does not support it.

I'm using an external form to edit grid rows. I have a CommandColumn that contains 3 buttons with the EditCommand, RemoveCommand, and CancelCommand directives.
I have the edit and remove commands working, and the data is being bound to the external form. I can also save the form just fine.
However, I have a requirement for the cancel to exist on the grid row, not on the form. I'd like the grid row to toggle to an edit mode, but have the editing done in my form, thus allowing me to cancel from the grid.
Is this even possible? I couldn't figure out any way to do it on my own.
