I found an example for jQuery only: https://demos.telerik.com/kendo-ui/sortable/integration-tabstrip
But I need it for Angular "^5.2.9"
My attempt work technically, the tabs move and are re-orderable, but the drag handle is not the Tab item itself, it is a separate [object Object] text.
<
kendo-sortable
[data]="tabItems"
itemClass
=
"tab-item"
activeItemClass
=
"active"
>
</
kendo-sortable
>
<
kendo-tabstrip
[keepTabContent]="true"
(tabSelect)="onTabSelect($event)">
<
kendo-tabstrip-tab
*
ngFor
=
"let item of tabItems; let i=index"
[selected]="i === index"
class
=
"tab-item"
>
<
ng-template
kendoTabTitle>
<
span
> {{item.title}}</
span
>
<
span
class
=
"k-icon k-i-close"
(click)="closeTab(i)"></
span
>
</
ng-template
>
<
ng-template
kendoTabContent>
<
app-tab-content
[componentName]="item.componentName"
[instanceName]="item.instanceName"
></
app-tab-content
>
</
ng-template
>
</
kendo-tabstrip-tab
>
</
kendo-tabstrip
>