I have a column in an MVC grid with grouped data defined like this...
columns.Bound(m => m.Location).ClientGroupFooterTemplate("#= data.parent().value #");This causes the excel export feature to fail. It works with the standard aggregate values like 'sum' but if any of the columns have a group footer template that references the 'data' variable it causes the excel export to fail.
I've created a jsFiddle to show the issue.
http://jsfiddle.net/edsinek/wh9wf5fq/
drag and reorder the items and in the end event, there should be 2 items in the list, but it shows there are 3. How can I make sure I always have 2 items in the end event?
In the real code, I have a numbered list and when I reorder, I want to update the numbers, but the incorrect number of items is interfering with the re-numbering code.
Thanks,
--Ed
I have a data source with groups already configured. I don't want to the grouping bar at the top of the grid or to allow the user to change the group settings in any way, but I want to use the ShowFooter option to always show the group footers...
I am using the MVC wrappers .
.Groupable(g => g.ShowFooter(true).Enabled(true)) //always shows footers but has the grouping bar and user can x out groups even if that column was set to be not groupable
.Groupable(g => g.ShowFooter(true).Enabled(false)) // ShowFooter no longer worksis there a way to keep grouping out of the users' hands but have ShowFooter still work?
hi,
I like to show only one event per day for different attendees in timeline view angularjs. i removed times column but it shows time rows as below example
http://dojo.telerik.com/eBoVo
i need to show only one event for whole day where it will remove time rows from the scheduler.
Thanks
Lilan
I have some collapsible widgets that I am "routing open" by way of a view().param switch on the view's "afterShow" event.
Basically, if a user clicks a nav link I am taking them to a different collapsible in that view. This all works well, however I may have a bug or some odd behavior on my hands.
If in my onAfterShow function I call:
$("#giving-collapse").data("kendoMobileCollapsible").expand();...But I am left with a zero height .km-collapsible-content block:
<div data-role="collapsible-content" class="km-collapsible-content km-animated" style="height: 0px; display: block;"><div>
So I have called this after calling .expand() ...
$("#giving-collapse .km-collapsible-content").css("height","auto");Which works and shows the proper content.
Am I missing something or should this work straight away without a defined height change?
Hi there,
I have a problem with custom commands in combination with angular. You can see it here: http://dojo.telerik.com/EBirE
When I click on the custom command I get redirected to another site even if I use preventDefault in the event handler. Instead I just want to open a kendo-window.
I think the problem is, that the a tag for the button uses href="#" which is picked up by angular.
How can I solve that?
thanks a lot,
Chris
I need to display a grid which looks like a pivot table with the data returned from the server in JSON format. How can I achieve that?
Hi,
We are trying to use a spa project template that Kendo put up on the Visual Studio Gallery https://visualstudiogallery.msdn.microsoft.com/924c3074-ceab-4be4-87e1-e9e4fd4b6d61 , The problem we are having is when building the requirejs app with the optimizer r.js, the app runs and no errors but the templates are not rendering, I can see that the templates have been included in the built file. The app and templates render no problem when not using the optimizer.
I have attached a project with the problem,
Templates not rendering when using built file
<script src="@Url.Content("~/Scripts/require.js")" data-main="@Url.Content("~/App/main-built")"></script>
Templates rendering with non built file
<script src="@Url.Content("~/Scripts/require.js")" data-main="@Url.Content("~/App/main")"></script>
Can anyone shed some light on this please?
Thanks
N.