2017-03-24 22 views

答えて

0

将来のユーザーのための応答。

インポート

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> 

は、この情報がお役に立てば幸いです。

関連する問題