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() ?
I am using Kendo MVVM with a hierarchical view model. I have an array of items, and each has sub-items. I have a setting at the root level which determines what sub-item is selected for each item (based on its index).
All of my data binds correctly, but when I 'set' the selected item index at the root level, the calculated properties on the items are not getting updated.
The following code demonstrates the issue:
http://jsfiddle.net/rmorrise/yqp5mke2/5/
What is going on here?
Hello,
is it possible to include javascript that is executed once inserted into DOM along with the rest of Kendo template?
I'm aware it's not recommended as the best practice but it seems to be the easiest solution for my team as we use various components in plenty of kendo templates and it would not be sustainable to initialize each and every component every time kendo template is rendered.
Regards