Hi,
I've stumbled upon a problem implementing the messages and culture into my Kendo UI scheduler.
I've followed http://demos.telerik.com/kendo-ui/scheduler/localization, and was able to change the language - but there is still a few things that doesn't change such as "Owner" in the popup-window when I create a new event. I've search through the messages file and can't find it there.
----------
resources:
[{ field: "ownerId",
title: "owner",
dataSource:
[{ text: "Alex", value: 1, color: "#f8a398" },
{ text: "Bob", value: 2, color: "#51a0ed" },
{ text: "Charlie", value: 3, color: "#56ca85" }]}]
So i've tried to implement the "Owner" into the messages.js file, but it doesn't work. Here is what I've done so far:
editor:{owner:"Owner",title:"Title" .........}
Im quite new to this and was wondering if someone would care to give me a hint on what I'm doing wrong? :-)
I have browsed around and found several thread, concluding that style binding an kendo MVC widget is just not supported.
Example of style binding: $('#kendoWidgetID').attr("data-bind", "style : { backgroundColor : modelColorAttribute } ");
I have, however, been unable to determine the following.
1: Is it in the works? Or will it be?
2: If style binding is not supported on kendo MVC Widgets, then how on earth am I meant to dynamically change the styles of my kendo widgets on my grid popup, depending on my selected model properties?

I have a grid defined with a few columns of type "date". An example of the json for a date column is as follows:
{
title: "myDate",
}
I have a grid containing a few date columns. An example of the json for a data column is as follows:
{
title: "My Date Field",
field: "myDate",
type: "date",
format: "{0:MM/dd/yyyy hh:mm tt}",
filterable: { ui: "datetimepicker", format: "MM/dd/yyyy hh:mm" }
}
The column displays in the proper date format (MM/dd/yyyy hh:mm tt) and the filter uses the proper datetimepicker control, which also shows the selected date/time in the proper format (MM/dd/yyyy hh:mm). The problem is that the filter value in the parameterMap object for the date column is always in this format:
"Tue Jan 12 2016 00:00:00 GMT-0700 (Mountain Standard Time)"
I realize that I could override the parameterMap function in the grid and write code to look up the column type and, if it is a date, convert the filter value to the format that I want, but before I do that I would like to know if there is a way to simply control the default format that the parameterMap uses for the filter value when the filter value comes from a datetimepicker control. Any info you can provide would be appreciated.
Hello all,
I have a call to a service that will always return a single object with properties on said object. I have a form bound to a view model. I have a property on the view model that is a reference to the dataSource (service call) so that when I update the object I can call the dataSource.sync() method to save the changes back to the server.
This workflow works well with collections of items (grid). However I am having a tough time figuring out how to bind the form elements to the single object that is being returned by this specific service. the basics are as follows:
Create View Model
Create DataSource, then call .read() method. In the response from the read method I set a property on the viewModel vm.set("myProp", myDS)
Then in my HTML form I would like to bind elements to data from myDS. However if I do something like:
var data = myDS.view()[0];
vm.set("myProp", data);
I of course lose access to the sync() method.
What is the proper way to bind form field values to data from a dataSource object that will only ever have a single object returned?
Hope this makes sense.
Thanks for any and all help.
http://docs.telerik.com/kendo-ui/api/javascript/ui/pager#methods-page
The example source code calls pager.page with the value 2 but the data type says this parameter should be a boolean. I am assuming this is incorrect?
Thanks
Hi guys. I'm using Q2 2015 Kendo UI Pro. we're using Visual Studio (2013 Ultimate) to work on a HTML5 and ASP WebAPI product. on the HTML5 (HTML5 only, no ASP.Net in the backend for the HTML5 Page). KendoUI intellisense works fine in any .js file but there is no intellisense in my HTML file for kendo attributes. I am using Kendo in conjunction with Angular. Angulars intellisense for element attributes works without issue. Is there suppsoe to be HTML Intellisense for Kendo UI. I would hope so as "UI" is normally HTML and it's in the name. :P.
Kendo.all.min.js and kendo.all.min.intellisense.js both reside in the same place along with jquery.min.js and angular.min.js.
Kendo intellisense works great in js (ts files actually, but you get the idea)
as an aside the kendoUI typings for typescript also work faultlessly too, this appears to be purely the HTML Intellisense. :)
Hello guys,
It is possible to change the visual location on the marker form the middle to the left ?