While I am trying to open the Context menu item using Kendo-ContextMenu (right click on the content to open the context menu), the Items of Context menu are not showing properly. Some of the items are not showing in the screen. Please find the attached screenshot for the same.
Please provide the resolution for this issue.
Hi! Is there any way to add this in schedule grid? Vertical lines for open and closed hours.

Can you give me a Example for this in a Angular Gird:
https://www.telerik.com/forums/wildcard-filtering-quot-and-quot-quot-or-quot-etc

I need to visible this step outer circle/border when it is the current step not only focusing/clicking on it, Im using next button to go future steps
I can use the value but then when I click on the calendar it highlights only the day that was clicked... I don't want clicking on a value to highlight it.. I want the collection of highlighted dates to be left alone.. How would I do this ? And how can I control the css for example.. Make the dates in the collection highlight with a blue font ..
selection="multiple"></kendo-calendar>

Hi,
Any one help me to bind kendo-menu items with enabled / disabled
My code:
</kendo-menu>
For Kendo UI Angular the Kendo grid is having issue of column header and grid data not aligned properly. If anyone has resolution to this issue please let me know
I have a very specific requirement that among others, asks to let the user input the decimal numbers the way they want.
Example:
User input:
1 -> display as 1
1.00 - > display as 1.00
I know there is no default pattern for it, but I can't even listen to the event of ValueChange when the user types "1.0". There is an event for "1" but nothing for ".0"
Initially instead of first step other steps are disabled. I want to enable them by button click. tried as follows but step still disabled.
public steps = [
{
class: "step1",
label: "API Setup",
iconClass: "k-icon k-i-file-bac"
},
{
class: "step2",
label: "File Upload",
isValid: this.isStepValid,
iconClass: "myicon1",
disabled : this.disableStep2
},
{
label: "Review",
isValid: this.isStepValid,
iconClass: "k-icon k-i-file-txt",
disabled : this.disableStep3
},
{
label: "Finish",
isValid: this.isStepValid,
iconClass: "k-icon k-i-file-txt",
disabled : this.disableStep4
},
];