Kendo UI Angular 2可排序方法

时间:2017-03-24 16:04:59

标签: angular kendo-ui-angular2

如何为Angular 2的Methods组件使用Sortable Kendo UI?

文档没有提供任何具体的例子。

1 个答案:

答案 0 :(得分:1)

回答未来的用户。

导入

import {SortableComponent} from '@progress/kendo-angular-sortable';

包含

export class ComponentName implements OnInit {

    @ViewChild('sortable') public sortable: SortableComponent;
    ...

}

拨打

public addDataItemFunction() {
    this.sortable.addDataItem('1', 0);
}

" addDataItem"作为方法。

<强>元素

<kendo-sortable #sortable ...></kendo-sortable>

希望这有帮助。