KENDO_SORTABLE
Constant
Use this utility array to access all @progress/kendo-angular-sortable-related components and directives in a standalone Angular component.
Definition
Package:@progress/kendo-angular-sortable
Syntax:
TS
import { Component } from '@angular/core';
import { KENDO_SORTABLE } from '@progress/kendo-angular-sortable';
@Component({
selector: 'my-app',
standalone: true,
imports: [KENDO_SORTABLE],
template: `
<kendo-sortable [kendoSortableBinding]="items">
</kendo-sortable>
`
})
export class AppComponent {
public items = ['Item 1', 'Item 2', 'Item 3'];
}