Hi, I have a few question about the aggregations feature of the Kendo grid. I've attached a picture to you that it will be easier for me to explain my requirements.
My question is if i want to apply the paging on this grid that summation values will be the summation of current page. Is it possible i can calculate it on server side and populate the sum result into the bottom row on Kendo grid?
The saveAsExcel() method, with allPages = true, on the Kendo UI Grid is silently failing for me when trying to export around 35,000 rows in Chrome. IE 11 saves the file as expected. Trying to save approximately half of the rows in Chrome works. It appears to be limited by the client-side save operation (Chrome will save the file if forceProxy = true). The exported XLSX file is approximately 1.5MB on disk. Any ideas or known limitations related to file size would be appreciated.
Browser: Chrome 47.0.2526.80 m
OS: Windows 2008 R2
Kendo UI: v2015.3.1111
jQuery: v2.1.4
The documentation shown here: http://docs.telerik.com/kendo-ui/web/datepicker/overview#disable-dates
The 'Open in Dojo' link takes you to Dojo where the code doesn't work as advertised.
I tried writing my own and it still doesn't work: http://dojo.telerik.com/IYiJe/13
I tried just setting disabledDates: true and there were still no disabled dates.
What am I doing wrong?
In the month view of the scheduler there is a code accessing the task title without checking if it is null, line 62 in "kendo.scheduler.monthview.js".
EVENT_TEMPLATE = kendo.template('<div title="#=title.replace(/"/g,"&\\#34;")#">' +
'<div class="k-event-template">#:title#</div>' +
'</div>');
so if there is a task with a null title (why someone will enter a task without a title :) ) the entire month view will not work.
I want to do this, which is a way to run content into a Kendo client side template:
<script type="text/x-kendo-template" id="layout-template">
layout template here
</script>
<script type="text/x-kendo-template" id="appDetails-template">
content here
</script>
How does the content get assinged to the template? I have no placeholder within the layout template for the content to be run into therefore it isn't displaying
Hey folks,
got a question around using angularjs directives to do in-cell editing in the kendo grid.
I've been using this piece of code to do in-cell editing with drop down lists.
$scope.dropDownEditor = function (container, options) {
$('<input data-text-field="Desc" data-value-field="Code" data-bind="value:' + options.field + '"/>')
.appendTo(container) .... }); };
Now - I want to use the same approach with an angularjs directive, this directive is a pop up window that allows the user to do some calculations and then return the value. This is what that code looks like
$scope.matrixEditor = function (container, options) {
$('<risk-matrix obj-attr="options.field"></risk-matrix>').appendTo(container);
This directive accepts the objAttr which should be the object reference like shown in the directive declaration
restrict: 'E',
scope: {
objAttr: '='
},
The idea is that I can pass that reference so it can be set via the modal dialog, but I can't get it to work. objAtrr is always undefined.
I've tried several variation of this line ( $('<risk-matrix obj-attr="options.field"></risk-matrix>')) but nothing works.
Is this even possible?
Any helps would be really appreciated
My project requires a MultiSelectBox.
I
have found an addon build on KendoUI DropDownList widget here:
http://www.telerik.com/forums/multi-select-with-checkboxes-plugin
I
have changed the code to work with KendoUI version 2015.1.429.
(I
believe it works with later versions, too.)
Please
see my code:
http://dojo.telerik.com/@DUKEiLL/OziqE
How
can I add a filter option to this addon so it works properly?
Thank
you,
Daniel.

Hello,
Is it possible to have some points use the standard marker shapes and only use custom visuals for data points that meet certain conditions? I can fake it by using the Kendo.Drawing classes to draw circles but it seems like there would be a simpler way. Plus the bigger issue is handling what happens when the cursor hovers over the point. I have used this page as my starting point.
Thanks,
Greg
I'm creating an application where I need to visualize multiple times in the same item. Basically, I have a departure time, start time, and end time and I want to have one color from the departure time to the start time, and another color from the start time to the end time. This is very similar to the Gantt control where you can adjust the percentage, but rather than a percentage I want it to be from one time to another time. The attached picture shows what the Gantt looks like.