I'm trying to configure this grid so that all the columns auto-expand enough to show all the data in every column.
Regardless of what I've tried, it seems that the table stays the same width with no scrolling, and calling autoFitColumn just *shrinks* that column to better accommodate the others (vs the way Format > Column > AutoFit Selection works in Excel.)
http://dojo.telerik.com/iRIqU
Can someone advise how to get the columns to auto-expand?
In kendo spreadsheet, if you
1. select 2 un-adjacent cells,
2. ctrl-x to cut, and selected cell contents are cleared
(in the console, error "Unsupported for multiple ranges" is thrown)
3. but when you paste with ctrl + v, the content is lost.
If you do the same thing for copy (ctrl + c), an dialog pop-up with message "That action cannot be performed on multiple selection". I think this should also happen for cut operation.
Hi there,
I was wondering if it was possible to sort the grid view data with the treeview.
I would want to load my data of say.... cars and display it in the treeview, but also sort everything in the treeview ex, by owner, by brand, etc.
If this is possible, how would i go about handling the data loading. Do I need to make a new structure for the data or can I simply use a different datasource?
Thanks.

Hi.
I use Metro theme.
When hovering a combo box, an unnecessary green underline appears by location.
It is the first combo box of the following sample.
http://dojo.telerik.com/IkaMUs
(I confirmed it with chrome.)
Is there a way to fix this problem?
According to the Kendo UI template documentation, you can use either the #=Field# or #:Field# notation, with the #:Field# notation encoding the text. However, I cannot seem to get this to work.
I created a field in my model that just returned a string, "<b>Todd</b>". Then, I used the template like this:
<a href="/page.aspx?path=#=Field#"></a>
and also like this:
<a href="/page.aspx?path=#:Field#"></a>
In BOTH cases, the output was
<a href="/page.aspx?path=<b>Todd</b>"></a>
While I would expect that for the #=Field# notation, for the #:Field# notation, I was expecting:
<a href="/page.aspx?path=%3Cb%3ETodd%3C/b%3E"></a>
Any ideas on why this isn't working like I am expecting?
I have multiple MultiSelect Instances:
@foreach (var group in Model.WellnessGroups) { <div class="hpanel hblue"> <div class="panel-heading hbuilt"> @group.Name </div> <div data-groupId="@group.Id" class="panel-body" style="display: block;"> <select multiple data-groupId="@group.Id" class="groupMultiSelect"></select> </div> </div> }
Each MultiSelect instance is wrapped in a groupId.
I would like for each MultiSelect instance to reflect in it's placeholder/value the specific items that have been saved to the database under that id.
I have an ajax call to a controller that will save the selected values on each "select" event so that when I select an employee, the ajax call grabs the employeeId and groupId and saves it into the database:
$(".groupMultiSelect").kendoMultiSelect({ placeholder: "Select Employees", dataTextField: "displayName", dataValueField: "objectId", dataSource: dataSource, autoBind: true, select: function(e) { var employeeId = e.dataItem.objectId; var wellnessGroupId = $(this).closest("div").prevObject[0].element[0].getAttribute('data-groupId'); wellnessGroupId = parseInt(wellnessGroupId); $.ajax({ url: "@Url.Action("SaveEmployeeToGroup")", cache: false, data: { employeeId: employeeId, wellnessGroupId: wellnessGroupId }, type: "Post", }).done(function(res) { toastr.success("Employee Saved to Wellness Group"); }).fail(function(err) { toastr.error("There was a problem saving this entry.); }); }, value: { //TODO: bind values of each multiselect field to reflect data that has been saved. } }); }); 
I'm using the Kendo Editor for Angular JS.
I want to set the default Formatting tool value to be Paragraph when the editor is loaded.
Is there a way to do that?
Other than that, in the thread https://www.telerik.com/forums/clean-the-paragraph-format it says that "The Paragraph format option is the default structural markup option", but when only a single-line text is entered with no formatting, the <p> tags are not added to it.
for example in http://dojo.telerik.com/aCUke , if the character 'a' is written in the editor and the focus is removed, the value is saved as only 'a' and not '<p>a</p>'.
Is this the editor's behavior by design? Or is it a bug?
Thanks,
Arik
