2017-03-24 5 views

Antwort

0

Antworten für zukünftige Benutzer.

Import:

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

Fügen:

export class ComponentName implements OnInit { 

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

} 

Anruf:

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

"addDataItem", um die Methode zu sein.

Element:

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

Hoffnung, das hilft.