Hello,
I found a new folder named 'apptemplates" in v2015.3.1002. What's this?
I'm recreating the form here
https://demos.telerik.com/kendo-ui/m/index#mobile-forms/types
I want the 'number' field to be prefixed with a '£' symbol. I know I could use numerictextbox but that means it doesn't bring up the numeric keyboard on mobile devices, so I need to stick with an input type=number.
I need the field to look like this, sorry for the crude drawing
Hi,
I have a Kendo Area Chart defined as follows:
$("#rawmessagechartLiveStream").kendoChart({
dataSource: rawMessageStreamChartData,
series: [{
field: "value",
categoryField: "date"
}],
seriesDefaults:{
type: "area",
area: {
line: {
style: "smooth"
}
}
},
categoryAxis: {
baseUnit: "minutes",
majorGridLines: {
visible: true
}
},
valueAxis: [{
title: {
text: "Events/Second"
}
}],
tooltip: {
visible: true,
format: "{0}",
template: "#= series.name #: #= value #"
},
autoBind: true
});
I have defined the dataSouce as follows:
var rawMessageStreamChartData = new kendo.data.DataSource({
type: "json",
pageSize: 100,
filterable: true,
scrollable: true
});
Everytime i get a bunch of data points from the server i do the following to update the datsSource:
for (var i = 0; i < eventRateData.length; i++) {
rawMessageStreamChartData.insert(0, eventRateData[i]);
}
This is causing the entire chart to refresh and it looks like a flicker every time it refreshes. I am looking to plot the new data points and scroll the chart x-axis smoothly so it looks like a scrolling live chart. Is there any way to do this. I am basically looking to plot minute based date points like a histogram that scrolls with time.
Please advice!
In gird example page(http://demos.telerik.com/kendo-ui/grid/angular)
Detail grid has bottom border but, the detail grid in the last main grid item dose not show bottom border.
I'm trying to start a simple APS.NET MVC 5 application with a ComboBox.
But when I start the application, I get this message: "The object doesn't support property or method 'kendoComboBox".
I wanted to look at the samples ([url=http://docs.telerik.com/kendo-ui/aspnet-mvc/introduction]described here[/url]), but I dont have the folder c:\Program Files (x86)\Telerik\UI for ASP.NET MVC Q2 2015\wrappers\aspnetmvc\Examples.
The c:\Program Files (x86)\Telerik\UI for ASP.NET MVC Q2 2015\wrappers\aspnetmvc folder contains only Binaries, EditorTemplates and LegacyThemes.
What can I do?
Hello,
I am utilizing the scheduler via MVVM in my application. The application is set up so that on databound, a left column displays all users that have events in the scheduler. For each user listed in the column, there is a kendo color picker. The right hand side has the scheduler.
I would like to have the users in the left column chose a color from the picker and set it so that all of the events that they own in the scheduler (on the rightside) will utilize the chosen color.
I am a little confused on the best way to go about this. Please advise.
Hi, i am using kendo timeline scheduler day view, issue is in recurring event UNTIL.
1. created weekly event unit 3 weeks.
2. go to middle week of event and change the date to another date.
3. it dis-appear from the view and but doesn't display on the shifted date.
Please see the attachment.
Regards
Shravan.
I've created a grid and customized it very much.
I'm using grouping data by default and have created a very specific group header (see code below).
01.kendoGrid = new kendo.ui.Grid(selector, {02. dataSource: getDataSource(),03. columns: [04. ...05. {06. field: column.field,07. hidden: true,08. aggregates: ['count'],09. groupHeaderTemplate: '#= createGroupRow("' + column.field + '", value) #'10. },11. ...12. ],13. ...14.});And createGroupRow function:
01.function createGroupRow(field, value) {02. ...03. var html = host.document.createElement('div');04. groups[value].gridObject = new kendo.ui.Grid($(html), {05. dataSource: [localData],06. columns: columnService.CreateInnerColumns(),07. scrollable: false08. });09. 10. return $(html).html(); // or html.outerHTML11.}'host' is the current 'window' object.
Rendering is finishing successful and everything seems to be fine... until I try to get this internal grid object.
When I change groups[value].gridObject, nothing happens, absolutely. I try to change to properties, dataSource... rendered grid doesn't want to change. Internally I can see that object actually changed, but nothing happens on the UI.
Also when I try to get object via:
1.$('div').data('kendoGrid')BEFORE rendering (before calling "return $(html).html()") and it works fine, but AFTER that I always get 'undefined' object.
It seems that kendoGrid is creating in the another scope or something like that, and then I cannot get access to that.
I will really appreciate if anyone can help me with that. I just need to create grids in the all group objects and then be able to get this grids and manipulate with it.
Thank you.