Hello.
We have just updated kendo to it's lastest version and one of our components is completely broken due to this container.
Is there any posibility to prevent the generation of this container ?
I've searched about this and found this post about the ContentElement but if we add this the source data-bind is not working at all.
GitHub issue: https://github.com/telerik/kendo-ui-core/issues/5772
Not working example:
<div id="sortableDropArea" data-role="listview" data-template="draggableElement" data-bind="source: listOfItems, contentElement: ' '"></div>
Example of our current code:
Main container:
<div class=""> <div id="sortableDropArea" data-role="listview" data-template="draggableElement" data-bind="source: listOfItems"></div></div>Child template:
<script type="text/x-kendo-tmpl" id="draggableElement"> <li class="list-group-item" fieldId="#: items.itemId#"> <span class='itemNameText'> #: items.itemName# </span> </li></script>When I use paging + filtering on the grid, and I edit my data, that makes the view change size, the pager is not updated.
https://dojo.telerik.com/@foxontherock/iminugeH/3
Click on the "filter" button, that changes all "number" field to make them visible on the view.
When you click on the pager, it correctly refreshes.
That can be fixed by adding a "kgrid.pager.refresh()" on the grid dataBound, but I think it should be fixed on your side.

Hello,
I'm doing some research on behalf of my team and have been looking for documentation that discusses linking functionality from notification pop-ups. This may be an easy thing to do but I am not a programmer (sorry!). Can anyone confirm that it is possible to embed links in the notifications?
For example: Worker A completes work that automatically is assigned to Worker B. When Worker A completes their work the system auto-generates a notification to Worker B letting them know work has been assigned to them. Worker B can either hit the X to dismiss or click the body of the notification to link them to the application page that requires their attention.
Any help on this is much appreciated!
Cheers
You can insert data from google docs in kendo editor ?
Please tell me what to do about this user data source.
function labelEmail(trackingNumber) {
var kendoWindow = $("#emailWindow").data("kendoWindow");
kendoWindow.open();
kendoWindow.center();
kendoWindow.toFront();
// This is the real one, in the window div
$("#txtLabelEmail_Body").kendoEditor({
width: "300px",
height: "150px"
});
// This is the extra test one, not in the window div, they both behave the same.
$("#Textarea1").kendoEditor({
width: "300px",
height: "150px"
});
};
Window Close:
function labelEmail_Cancel() {
var kendoEditor = $("#txtLabelEmail_Body").data("kendoEditor");
kendoEditor.destroy();
var Textarea1 = $("#Textarea1").data("kendoEditor");
Textarea1.destroy();
var kendoWindow = $("#emailWindow").data("kendoWindow");
kendoWindow.close();
}
Thanks for the help.
Randy Miller

Hello,
we have just switched to this editor from Tiny MCE but it doesn't seem to offer the ability to create same page hyperlink anchor tags via the interface and our users are not confident to create them through the HTML code.
Am I correct that this functionality does not exist or am I missing something?
Thanks

Dear Telerik-kendo team,
I need a help for a particular functionality I am trying to achieve using kendo UI for jquery - spreadsheet. Currently I am facing two problems while trying to do drag down and copy cell values.
Here are the steps I was doing:
1. sheet.range("C1:C" + totalRowsCount).wrap(true);
2. Insert a really long text inside a C column's cell. The text wraps well as I wanted.
3. Hold the bottom right point of the cell and drag down.
4. Now the other cells got the upper cell's text, but text is not auto wrapped. (problem 1)
5. As encountering with problem 1, I tried a solution, that I tried to get the selection from range and set the selected cell's rowHeight onChange event. But in the selection() method, I am only able to access the top cell's information, not those cell's whose row height needs to be adjusted.(problem 2)
