I have a slider where one can increase the zoom in/out with the help of the slider. whenever the user increases the zoom as of now now I am changing the width of this table("k-scheduler-table") dynamically in the scheduler view. In total there are 4 tables with such class but I am changing only the two tables width dynamically. When I do this I am refreshing my timeline through code and it works without any problem. but the data which is there inside the timeline with a specific time. for instance consider a task from 6am to 6:30am. Now after increasing the zoom task remains at some other timeline rather than at 6am-6:30am. and if I use scheduler.refresh() then my width which I have setted dynamically for the table classes is no longer and zoom effect is gone. I need an idea what can i do.
1-)Help me by refreshing the task to the current time-zone(only task-time-zone not the entire scheduler so that the zoom remains same)
2-)Or else refresh the scheduler and somehow I should pass the two table classes width dynamically
You can find the problem in the attached image

According to following example (https://demos.telerik.com/kendo-ui/form/index), it is great and easy to create a kendoForm with validation.
...but I would like to customize rendered form, for example, I would like to place formItems into tabstrip
...or I would like to move some items, add custom text between them and etc...
Does exists any way for this (...except using react :-D ) ...or is it possible to do this with another way => generate kendoForm from existing bootstrap html form (with all kendo form features and kendo validation)?
Thanks a lot for each idea.
Hi I have a working application with Jquery autocomplete, Jquery date picker and so on. I was asked to replace a simple textbox with richtext boxes for a few fields. Since we have a license for Telerik, I decided to go with the Kendo Jquery and the UI is perfectly working by referencing.
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2020.2.617/styles/kendo.default-v2.min.css" />
<script src="https://kendo.cdn.telerik.com/2020.2.617/js/jquery.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2020.2.617/js/kendo.all.min.js"></script>
I am yet to hookup the database side but in the mean time, If I insert Kendo, the Jquery datepicker is throwing error. "Error: Object doesn't support property or method 'datepicker'". Also, auto populate doesnt trigger.
Are there any conflict of using Jquery and Kendo? or are there any duplicate reference causing this issue?
<!--<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/redmond/jquery-ui.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script>
<script src="https://code.jquery.com/jquery-1.11.0.min.js" type="text/javascript"></script>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
-->
<link href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" rel="stylesheet" />
<link href="https://jqueryui.com/resources/demos/style.css" rel="stylesheet" />
<script src="scripts/jquery.numeric.js" type="text/javascript"></script>
<script src="scripts/jquery-3.3.1.min.js"></script>
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2020.2.617/styles/kendo.default-v2.min.css" />
<script src="https://kendo.cdn.telerik.com/2020.2.617/js/jquery.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2020.2.617/js/kendo.all.min.js"></script>
<textarea id="successful" rows="5" cols="30" style="width:100%; height:840px" aria-label="successful">
</textarea>
<script>
var successful = $("#successful").kendoEditor({
tools: [
"bold",
"italic",
"underline",
"justifyLeft",
"justifyCenter",
"justifyRight",
"insertUnorderedList",
"createLink",
"unlink",
]
});
</script>
Please advise on this conflict. Also, I have an existing mvc textbox control @Html.TextAreaFor(m => m.successful, new { @class = "form-control" }) which is saving in the database directly. How can I associate/hookup kendo textarea with the same control and database field called "successful" Please help.
Thanks in advance.

Hi,
Here's the example (http://jsfiddle.net/jxn2u7y9/) that I try to draw a line,
But I want to control the speed of the initial animation duration,
Is there any way or api to slow down the initial animation duration speed such as the setInterval way using in this example (https://jsfiddle.net/k9fxbmp8)?
var timer = setInterval(() => { if(count > len){ clearInterval(timer) } myChart.data.datasets[0].data.push(totalData[count]); // myChart.data.datasets[1].data.push(releaseData[count]); myChart.update(); count++;},800)
Thanks
I have to disable and enable cells of the grid under the same columns based on date validations. Is it possible to do that in Kendo Grid?
I am new to Kendo UI and not getting proper examples for doing this.
P.s.Any proper example explaining this will be really helpful.

Hi,
I want to add Select All checkbox in asp.net mvc kendo grid explicitly.
We are using razor kendo grid.
If I use ClientTemplate or Client Header Template Boolean values showing. I need select all check box.
For columns its showing fine. but in header how to add select all checkbox explicitly. Kindly help
