Hi,
We are using Date axis line chart.We need to display a year data in the x-axis(dates), when we set baseUnit= "days", the labels are getting overlapped. So we have tried changing it to Fit, the kendo script automatically calculates average, there is no overlap in this case,but the points that are getting displayed is not matching the exact data.
Pls refer the attached snapshot, my data does not have any value for date 9/20/2015. Can it be made to show the points only for which the data is available. Or please suggest how can we handle the cases when the data is more than 100.
I am using the listview with a pager. When I refresh the listview with new data I want the page to go back to page 1 so I used the page() method. It doesn't work and the debugger shows the error message "pager.page is not a function".
Here is the code initializing the pager:
var pager; // this is global
pager = $("#pager").kendoPager({
dataSource: dataSource
});
And here's where I call the method:
pager.page(1);
I have no idea why this function isn't recognized and would appreciate some help.
I've reported this before on the forum and through support tickets.
If you have a grid column with the name "Fields[3].Value" Kendo throws an exception unnecessarily when trying to filter on it.
This can be fixed by adding a period to the list of accepted characters in the FilterLexer. I've done this myself a few times and I'm a bit tired of having to rebuild it every time Kendo gets updated...
Expected token
at Kendo.Mvc.Infrastructure.Implementation.FilterLexer.Tokenize()
at Kendo.Mvc.Infrastructure.Implementation.FilterParser..ctor(String input)
at Kendo.Mvc.Infrastructure.FilterDescriptorFactory.Create(String input)
at Kendo.Mvc.UI.DataSourceRequestModelBinder.BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
at System.Web.Mvc.ControllerActionInvoker.GetParameterValue(ControllerContext controllerContext, ParameterDescriptor parameterDescriptor)
at System.Web.Mvc.ControllerActionInvoker.GetParameterValues(ControllerContext controllerContext, ActionDescriptor actionDescriptor)
at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass21.<BeginInvokeAction>b__19(AsyncCallback asyncCallback, Object asyncState)
Hello Everyone,
I am relatively new to Kendo. I have a question is it possible to get the count of selected rows in a column and added it to the paging bar? If so how? I have highlighted the area in a screenshot.
$(
"#filterable-listview"
).kendoMobileListView(
dataSource: dataSource,
template: $(
"#mobile-listview-filtering-template"
).text(),
filterable: {
field:
"ProductName"
,
operator:
"startswith"
},
endlessScroll:
true
});
This works fine when the datasource has at least 1 record. It also works fine with the grid control, so I assume this is a glitch with the timeline? I am one revision behind the latest, so this may already be fixed.
kendoTimeline = $("#divTimeLine").kendoTimeline({
orientation: "horizontal",
dateFormat: "MM/dd/yyyy",
dataSource: {
data: new Array(),
pageSize: 0,
sort: { field: "date", dir: "asc" }
},
}).data("kendoTimeline");
kendoTimeline.destroy();
--------------------------
JavaScript Error: Uncaught TypeError: Cannot read property 'destroy' of undefined
URL: http://localhost/SINet/STERLING/AllPoints/PublicScripts/kendoui.2020.2.617.commercial/js/kendo.all.min.js
Line Number: 94
The documentation for the ImageEditor is somewhat lacking. Can you please explain how I can replace the 'Save As' button with a custom button that calls a function?
Thanks