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
>