
The calendar scheduler date range binding doesn't apply to calendar view. On edit, I see the start and end date as a correct multi-day event, but on save the calendar view doesn't get updated with multi-day event range.
I do have all the fields similar to example https://demos.telerik.com/kendo-ui/scheduler/index
I'm using Custom Binding via AJAX to sort my data source.
The grid columns do not show any sort indicators.
In contrast, when not doing custom binding but let Kendo UI handle it, sort indicators are being displayed.
My question:
How can I tell the grid columns to show sort indicators, even if I'm using custom binding?
Hello,
We are using a column chart similar to your demo of:
https://demos.telerik.com/kendo-ui/bar-charts/column
In this demo the tooltips always appear to the left/right side of the hovered column. Is there a way to set the tooltip location so it will be presented above the column (i.e. column top)?
Thanks,
Ron.
Steps to reproduce:
Go to https://docs.telerik.com/kendo-ui/controls/scheduling/scheduler/how-to/editing/modify-editor-when-event-is-new
Click "Open in Dojo"
Click Run
Doubleclick any free slot different from today day (e.g. click on Thursday if today is Monday)
In the open popup select Repeat=Weekly
Actual Result: Monday checkbox is checked by default
Expected behavior: Thursday is checked by default because of is created for Thursday
The same issue is reproducible when selecting other Repeat options
In the open popup from the previous steps select Repeat=Daily
Pay attention to "On" option value
Actual Result: On option says 1/7/2019
Expected behavior: 6/13/Y is selected in default option because of selected date for the event 6/13/2013

.DataSource(ds => ds .Read("_getAllData", "Data") .Group(gg => gg.Add(m => m.Year)) .Filter(ff => ff.Add(m => m.Key).IsEqualTo("X").Or().IsEqualTo("Y")) .Sort(ss => { ss.Add(m => m.Year).Ascending(); ss.Add(m => m.Month).Ascending(); }))series.Line(m => m.Value, m => m.Month)
.Aggregate(ChartSeriesAggregate.Sum).MissingValues(ChartLineMissingValues.Gap);How can I conditonally stop the change on datepicker?
This is what I tried, but it is not working.
https://dojo.telerik.com/opAqoqEq
Is it possible to have multiple validator initializations on different div tags? Basically I'm wanting to do a wizard (without the use of the progress bar) and I want to validate one div tag per "next" button.
function ShowSection2()
{
//validation
var validator = $("#Section1").kendoValidator().data("kendoValidator");
if (!validator.validate())
{
return;
...
function ShowSection3()
{
//validation
var validator = $("#Section2").kendoValidator().data("kendoValidator");
if (!validator.validate())
{
return;
...

Using R3 2018 SP1.
I need to bind to the select event using MVVM in order to prevent some nodes from being selected. I've modified the MVVM demo code to bind to the select event and I'm unable to get it working. Is this a known issue? Is there a workaround that I can use which uses MVVM?
Thanks