Hi,
I used "selectable: 'multiple, row'" as our treeList option, such that we can multi-select tree items (via shift-key or ctrl-key). It works fine on desktop browsers.
However, when we use iPaq (Safari) or Android Tablet (Chrome), it is very difficult to scroll the tree since touch-and-move on the tree will be treated as multiple selecting the tree item. Only when I touch on the treeList thin right-edge and move, it will scroll sometimes. It is not so user-friendly.
Do anyone have any suggestion? e.g. can we have visible scroll bar for treeList on mobile device?
Please kindly advise. Thanks!
Kelvin

Can someone tell me exactly how the grids behavior changes when EnableCustomBinding is set to true?
Does it change the request that is sent?
Does it change the data that is expected from the server?
Does it change how binding is done?
Does it work differently if ServerOperation is true or false?
The latest 2016 version treelist some time doesn't return the right data when apply the filter on column.
Here's the code which you can repeat that bug. When I apply a filter on column ClassSecurity start with "U", the data is incorrect. But the old 2015 version is good.
2016 version http://dojo.telerik.com/@cchu/IwUso
2015 version http://dojo.telerik.com/@cchu/uZADe
The kendo Grid is actually a table, with output that produces a single row (formatted with varying columns) for each data record. I was looking to create an actual grid, with a single template that outputs a "cell", and cells repeating horizontally until they wrap to the next row vertically. Like a grid of movie posters, or whatever.
There's nothing existing that marries a DataSource with some appropriate subset of Grid concepts to do this, is there?
Is there a way to enable autocomplete for kendoTimePicker?
Ideally, the dropdown list of time options would "follow" whatever the user types in.
So in this use case:
1. The user clicks the timepicker field and the dropdown expands.
2. The user types the number 2
3. The dropdown scrolls to 2:00
4. The user types 2:1
5. The dropdown scrolls to 2:10
6. The user types 2:15
7. The dropdown displays 2:15 am and 2:15 pm.
Hi Team,
I am using the HTML Kendo chart in one of my UI. I am using the scatter and scatter line type for the same. As I need to show the data with its best fit regression line.
I am not able see the x axis and y axis title in my chart.
Attached is the image of my chart.
<%= Html.Kendo().Chart<PRT.Web.Models.QualityOverTimeViewModel>()
.Name("BestFitGraphWarm")
.Series(series =>
{
series.Scatter(
model => model.xaxis,
model => model.yaxis
)
.Labels(labels => labels.Background("transparent").Visible(false));
})
.Series(series =>
{
series.ScatterLine(
model => model.estXFieldName,
model => model.estYFieldName
);
})
.CategoryAxis(axis => axis
.Title(title => title.Text("Time"))
.Categories(model => model.Label )
.MajorGridLines(lines => lines.Visible(false))
.Line(line => line.Visible(false))
)
.ValueAxis(axis => axis.Numeric()
.Title(title => title.Text("Warm"))
.MajorGridLines(lines => lines.Visible(false))
.Line(line => line.Visible(false))
.Max(100)
.Min(0)
)
.Title(title => title.Text("Bivariate Fit of Warm Germ Test% By Time(Days After Harvest)"))
.Legend(legend => legend
.Position(ChartLegendPosition.Bottom))
.Tooltip(true)
.DataSource(dataSource => dataSource
.Read(read => read.Action("GetRegressionWarmChartData", "Visualize"))
)
%>
this is my scheduler code
<div id="scheduler" style="height:450px; overflow-y:auto;"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
timezone: "Etc/UTC",
views: [
"day",
"week",// a view configuration can be a string (the view type) or an object (the view configuration)
{ type: "month", selected: true }, // the "week" view will appear as initially selected
"agenda",
"timeline"
],
dataSource: dsSchedule
});
var dsSchedule = new kendo.data.SchedulerDataSource({
transport: {
read: {
url: '/Projects/GetProject',
dataType: 'json',
},
},
schema: {
model: {
id: 'taskId',
fields: {
taskId: { from: "TaskID", type: "number" },
title: { from: "Title", defaultValue: "No title", validation: { required: true } },
start: { type: "date", from: "Start" },
end: { type: "date", from: "End" },
description: { from: "Description" },
recurrenceId: { from: "RecurrenceID" },
recurrenceRule: { from: "RecurrenceRule" },
recurrenceException: { from: "RecurrenceException" },
isAllDay: { type: "boolean", from: "IsAllDay" }
},
},
},
});
</script>
when i access schedular using $("#scheduler").data('kendoScheduler') it gives error undefined
