答案 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>
希望这有帮助。