Kendo UI 的 emptyItemClass 可排序 Angular

emptyItemClass for Kendo UI Sortable for Angular

我可能遗漏了一些基本的东西,但我似乎无法将 emptyItemClass 应用于 angular 的 kendo-UI 可排序组件 2.

我也尝试过使用 emptyItemStyle,得到了相同的结果。

<kendo-sortable [data]="viewColumns" itemClass="itemClass" emptyItemClass="emptyItem" activeItemClass="activeItemClass"
[emptyText]="'No columns selected'" (dragEnd)="doneDragging($event)">

在上面的代码中,snipit itemClass 和 activeItemClass 有效,但 emptyItemClass 无效。

Here is a StackBlitz of my problem

您需要删除示例中的括号并使用 ViewEncapsulation

Working StackBlitz