I updated to the latest version of kendo ui in my project (I cannot provide examples of code). I noticed that the little spinner "span.k-icon.k-i-loading" is staying visible since the latest update. I'm not sure if there is an issue with a css file or something else.

Hello,
I've opened a ticket with this question and it occurred to me I should have probably asked it here first. Sorry about that.
Is it possible to use angularjs + ng-click inside of a listbox template if i construct the listbox using angular syntax? For example I have the following plunker, I'd like to be able to click one of the items in the listbox and have it call the same ng-click function that the button can (really I want any angular stuff in there to work, not just ng-click):
https://embed.plnkr.co/Woy3VBlWOFYFrhdBsjmR/
In contrast I am able to do what I want (e.g. put a ng-click in the template) if I construct the listbox using jquery syntax
https://embed.plnkr.co/7fRww24CkslSxWwY3PQy/
here i can use angular e.g. ng-click in the listbox template, but I'd rather NOT initialize the listbox using jquery syntax since it means I'd have to refactor some stuff.
I found this link and it makes me think maybe this isn't supported for this listbox? but perhaps you have a clever hack...
https://docs.telerik.com/kendo-ui/AngularJS/introduction#template-directives
Hi,
We have a need to test our application for different days of the year, we are doing this by setting a 'fake' system DateTime. I'd like to display this on the gantt via the currentTimeMarker. Is there anyway to override the datetime that this line uses either in JS or c#?
Thanks, Matt
This is probably a long shot, but thought I'd ask if anyone has any suggestions.
I've got a grid where the first column is a checkbox column for selecting rows. I've then added a kendoMenu to this column to provide actions to perform on the selected rows. However if I start re-ordering columns they get messed up in weird and wonderful ways.
We're on version 2013.2.918 and I've recreated the issue in a kendo dojo (try dragging Quantity Per Unit over to be the first column to see the error).
I've updated the example to the very next released version of kendo (2014.1.318) and the problem goes away. However due to project timeframes a kendo upgrade at this point would not be ideal.
Can anyone suggest a workaround (without upgrading kendo)?

Hello
I have grid with selectable columns
grid = gridDiv.kendoGrid({ dataSource: dataSource, columns: [ { selectable: true, width: "50px", } ],});kendoGrid = grid.data("kendoGrid");
Is there any event that triggers when select/unselect happens. I need to trigger some other events when selection is changing + set some properties on data item.
Thanks
With the addition of the selectable column, is there a way to default the column so that everything is selected when the grid loads?
https://demos.telerik.com/kendo-ui/grid/checkbox-selection
Hello
Is it possible to render grid under one invisible element, but show it in different one. Main problem is that showing element is disappear each time when user communicate with my app,If i generate new grid one each refresh selectable column in the grid stops working.
Can you guide me how to solve one or another problem.
I have a grid with endless scrolling. I want to load filtered rows to the grid. Any other operation shoud be performed on the client side.
I expect the grid will send a request only on a first grid loading and when I set a new filter.
Sorting, grouping, paging should be done on a client side.
BUT when I scroll down my grid endless scrolling is activating and grid sends a request to the server even if I set serverPaging to false.
My source code:
01.function loadGrid(profile) {02. $("#Grid").kendoGrid({03. dataSource: dataSource(profile),04. columns: profile.Columns ? JSON.parse(profile.Columns) : [],05. scrollable: {06. endless: true07. },08. pageable: {09. numeric: false,10. previousNext: false11. },12. groupable: true,13. sortable: {14. mode: "multiple",15. allowUnsort: true,16. showIndexes: true17. },18. filterable: {19. mode: "row"20. },21. selectable: "multiple cell",22. navigatable: true,23. resizable: true,24. reorderable: true,25. columnMenu: {26. filterable: false27. }28. });29. }30. 31. function dataSource(profile) {32. return new kendo.data.DataSource({33. type: "webapi",34. pageSize: 50,35. transport: {36. read: {37. url: "BI",38. type: "POST"39. }40. },41. group: JSON.parse(profile.Groups),42. sort: JSON.parse(profile.Sortings),43. filter: JSON.parse(profile.Filters),44. serverFiltering: true,45. serverPaging: false,46. serverSorting: false,47. serverGrouping: false,48. serverAggregates: false49. });50. }