我正在尝试在包含三个仪表板/视图的应用程序中创建一个轮播。这是静态视图。
Kendo 提供了data属性,通过它我们可以将需要的图像作为轮播,但我需要一种传递 Html 元素的方法(div/ng-template)
我将创建三个 div 或 ng-templates ,如何使用这些元素作为滚动视图中数据属性的输入。
<kendo-scrollview
[data]="items" // what should be the data ?
[width]="width"
[height]="height"
[arrows]="true"
[pageable]="true">
<ng-template let-item="item">
<div>dashboard 1</div> // this is the first view
<div>dashboard 2</div> // this is the second view
<div>dashboard 3</div> // this is the third view
</ng-template>
</kendo-scrollview>
知道如何使用 scrollview 来实现吗?