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
Hi
I do have many columns in Kendo (alot of data), hence I am trying to save every pixel of space.
I am therefore (as done in our "old" grid solution called slickgrid) showing two data items in one cell as per this example (except column "title"):
http://dojo.telerik.com/OwABI
1. Now the sorting does not seem to work properly. The filter by word, nor the normal (click on header) sort work anymore. How can I fix this?
2. As mentioned I am trying to save space, because I have many columns is there a way to "hover" the arrow icon or have it use less space? (example on the first column where it uses a lot of space)
Thank you

When the user selected file has quite a long file name, the name displays all the way to the end of the upload component and overlaps the progress indicator.
Can it be fixed so the file name automatically get truncated when it reaches the progress indicator?
Hi
I have a grid which exports perfectly to Excel but throws an exception as soon as I add a field with a name using dot syntax like:
'["Toponym.id"]'
Is there a work around or a bug fix for this caes?
Regards
Alex
I have a requirement where the number of graphs, graph data and information related to graph are all bound via a web service call.
I am trying to find if there is a way to bind Graph's Category, Value Axis' Titles and Graph Title from a web service call. Please see http://dojo.telerik.com/OyEVi for an example of what I am trying to accomplish. I am dynamically trying to bind category and value axis titles to "GraphValueAxisTitle" and "GraphCategoryAxisTitle". Just wondering if its possible to data bind this information via MVVM?
Thanks
Venkata
Hi
I am aware that you can pass a template attribute that contains the cell html to the grid or use your special templating syntax.
Is it possible to return a DOM object for a cell template so events such as onClick will work correctly?
Basically I'm trying to get a full function of marionette itemview as a cell element and since only html can be returned (from what I figured out) the events dont register.
At the moment I'm rendering a cell this way:
column.template = (dataItem) => new SomeItemView(model: @_buildModelFromItemData(dataItem)).render().$el.html()
I just had a quick question regarding memory management with the Drawing API. There doesn't appear to be any documented "destroy" method for the drawing elements (Group, Path, etc.). Is it sufficient to call surface.destroy() to properly clear up and remove all drawing content?
Also, I noticed that calling surface.destroy() does not appear to remove the markup from the page. Do I need to manually remove the SVG element from the document with something like $("#container").find("svg").remove() ?