Hi,
I'm using the ListView with Angular and when I set the selectable property to multiple the ListView is not showing anymore. When I set selectable back to true, it works correctly( setting it to single doesn't work either). Any ideas what the issue might be?
<
div
kendo-list-view
class
=
"productList"
k-data-source
=
"$ctrl.products"
k-selectable
=
"multiple"
>
<
div
class
=
"product"
k-template>
{{ dataItem.productName }}
</
div
>
</
div
>
Thanks in advance,
Christian.