So if have a chart that represent data over a period of time like current fiscal quarter, that date would be from beginning of July through end of September. So the chart would draw a period of time ranging those 3 months. However, if the most recent data goes until current day minus one, the series drawn on the chart dips down to "0". What I am after with modifying some existing code is for when the series is drawn, it stops drawing the series (for a line chart) at today(-1) and does not make the series (line) go further where no data is yet represented since it is in the future. This said, I hope I was descriptive enough and am hoping some of you could post some examples I could reference that does draw a chart over coarse of time with the series not going the full span of time. Could not find any particular documentation on this. Appreciate the help. Thanks much.
Hi,
I am using the Asp.Net Mvc Wrapper for the scheduler control. I noticed that if I specify an editor template, the delete confirmation message does no longer appear:
To clarify, with this declaration the confirmation message does not appear:
there is a new exclusive IE8 bug in the 2013 Q2 release which is easily reproduceable with the Online Kendo Demos.
If you change the "Font" Drop-Down (e.g: Heading 1, Heading 2), a javascript error occurs in "kendo.web.js": Object doesn't support property or method 'indexOf'
Can you please put the fix in the next Internal Build.
I want to be able to select a row in a parent grid and be able to see (and edit or add) all of it's children. The parent is a lessor and the child is the leased equipment. I created a through away project where I get the expected behavior but when I implement it my real project it is not working. I have verified I am getting a JSON response back from my controller but the grid is not filling in with the data.
Here is my stripped down code from the razor view:
function error_handler(e) {
if (e.errors) {
var message = "Errors:\n";
$.each(e.errors, function (key, value) {
if ('errors' in value) {
$.each(value.errors, function () {
message += this + "\n";
});
}
});
alert(message);
}
}
function change() {
$("#LeaseGrid").data("kendoGrid").dataSource.read();
}
function data() {
var grid = $("#LeasingGrid").data("kendoGrid");
Hello,
I'm using KENDO UI grid in mvc4 application and following your tutorial for ajax binding I'm doing something as
public ActionResult Products_Read([DataSourceRequest]DataSourceRequest request)
{
using (var northwind = new NorthwindEntities())
{
IQueryable<Product> products = northwind.Products;
// Convert the Product entities to ProductViewModel instances
DataSourceResult result = products.ToDataSourceResult(request, product => new ProductViewModel
{
ProductID = product.ProductID,
ProductName = product.ProductName,
UnitsInStock = product.UnitsInStock
});
return Json(result);
}
}
Now I need to add an export in PDF/csv function... I was wondering since you don't offer it out of the box to store a guid of the retieved data and pass it back to
the client...at the button click I'll pass this data back to the server and export the data if still present in cache otherwist I'll remake the call...
now I've tried adding a TempData["guid"] just before the Json(result) but with no luck.. should I change the binding method? and use a pure kendoui grid passing back an object as
Result { Guid ID {get;set; } IEnumerable<type> DataItems {get;set}} ?
I inherited an MVC application that was using Kendo UI 2012.3.1114. I am trying to upgrade the project to use 2013.2.716. Using the library package manager in Visual Studio 2010, I downloaded the latest version of Kendo via Nuget. The files seemed to load correctly into my project. However I soon realized that the 2013.2.716 folder is missing a kendo.aspnetmvc.js file. I'm assuming that this file is necessary for the project since it was included in the older version of the Kendo files. (Not sure if this is related or not, but I noticed that the ListView templates are not working anymore.) So in Visual Studio 2010 I used the Kendo UI for ASP.NET MVC Upgrade Wizard thinking that this tool would provide me with the updated script. However instead this tool reinstalled the old version of Kendo into my project. I've been searching on the site and forums trying to find out how to get the 2013.2.716 version of kendo.aspnetmvc.js but am having no luck. Does anyone have any suggestions?