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.
Hi,
I'm trying to change some toolbar items at runtime by updating the options held in $scope.
The attached file in Index.zip uses an older version of Kendo and works fine (the modal window title and button text on the 2nd toolbar button get updated as I'm trying to do).
When I change to use the current version of Kendo with the following CSS/JS files, as shown in the attached file IndexBad.js.zip, it blows up with the following error:
Error: [ng:areq] http://errors.angularjs.org/1.3.0/ng/areq?p0=MyCtrl&p1=not%20a%20function%2C%20got%20undefined
at Error (native)
at http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:6:416
at Mb (http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:19:510)
at nb (http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:20:78)
at $get (http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:74:494)
at http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:56:415
at r (http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:7:408)
at M (http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:56:281)
at g (http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:51:201)
at g (http://cdn.kendostatic.com/2015.1.408/js/angular.min.js:51:218)
FYI, I've tried the broken version with jQuery from both the Kendo and jQuery CDNs, both throw the same error.
Is this a bug, or has some behavior changed? If it's a change, what is the correct way to do this in the updated version of Kendo?
Thanks,
Chris Csencsits