Hi there,
I have a project using "@progress/kendo-ui": "^2020.3.1021", and I upgraded it to the latest version ("@progress/kendo-ui": "^2023.1.425"). After the upgrade, the dependent file cannot be found anymore. The files are no longer existing in the folder.
How can I fix the issue?
Thanks!
What is it the users are doing where <font> is being added to the editor, and how can I stop it from happening.
Example:
<font color="inherit" face="inherit" size="-1"

Hi Support.
I recently upgraded a jquery/bootstrap 3/kendoui project from less to sass, and have a bootstrap 3 dropdown button in grid row/cell that is being hidden by the grid pager. See screenshot.
The code below I used in the grid databound event in less to fix the "is hidden issue" no longer works in sass:
var style = document.createElement('style');
document.head.appendChild(style);
if (this.dataSource.data().length > 0) {
style.sheet.insertRule('#versions-grid .k-grid-content, #versions-grid tr td {overflow: visible}', 0);
} else {
style.sheet.insertRule('#versions-grid .k-grid-content, #versions-grid tr td {overflow: hidden}', 0);
}

Hai,
I have two questions :
1) How can I change the width of a GridColumn, as show below? I am currently using GridColumn. Please find attached as reference.
2) How can I use Kendo UI to create a bar graph like the one shown below? The graph should update based on the user-entered values for total occurrence and time period (week/month). Does Kendo UI support this functionality?
$('input[type="checkbox"]:not([data-role="switch"])').kendoSwitch()Hi,
I want to hide the date row in the scheduler when grouping is used. How can I achieve this?
WITH my_cte AS ( SELECT * FROM my_table ) SELECT * FROM my_cte WHERE id = 1;
ORA-00933: SQL command not properly ended

Extension of below question
For reference link bellow: https://www.telerik.com/forums/how-to-set-data-attribute-for-multiselect-dropdown-li-element#5647546

Hello everyone,
I am trying my hands at the Heatmap chart. I like what it does and have mostly managed to customize it the way I want.
However, I was wondering if there is a way to assign colors to the cells similar to how you can do 3 color scale conditional formatting in Excel.
For example, for the given set of values, the max value is shown with green marker color, the min in red, the median value in yellow.
And then all other values follow a gradient between these 3 primary colors based on what the value is.
The heatmap already does a gradient of color, and changes the shade from dark to light as the value goes down, but it does this in just one color, depending on which theme you chose.
If it helps, I have attached a sample from excel.
Thank you.
Alok.
I'm using template binding to display a list of users. For each user, we have a yes/no radio button and a drop down. The options available in the drop down are dependent on the radio button. If the user picks "yes" in the radio, we give them 4 options in the drop down, if they select no, we give them 2 options.
I created a view model that contains an array of users and for each user I have an array of the available options for the drop down.
ex. viewModel= [{UserId: 1, RBValue: true, DropDownId: 3, DropDownOpts: [1,2,3,4]}, {UserId: 2, RBValue: false, DropDownId:1, DropDownOpts: [1,2]};
And then in my template I have a select as such:
<select source: DropDownOpts, value: DropDownId"></select
When the radio is updated, I modify the DropDOwnOpts for that item.
When the page loads, it works fine. The appropriate options appear in the dropdown list, but when I modify the DropDownOpts in the viewmodel, I can see the update in the console, but the options do not change.
Am I missing something obvious here? Or is this not possible (I'm sure I can do it via js, but would rather not).
Thanks for any help.