New to Telerik UI for ASP.NET Core? Download free 30-day trial

Reordering of Columns

The TreeList provides options for reordering its columns.

To enable the user to reorder the columns of the TreeList by dragging, set the Reorderable() method to true. For a runnable example, refer to the demo on implementing column reordering in the TreeList.

    .Reorderable(reorderable => reorderable.Columns(true))
    <kendo-treelist name="treelist" reorderable="true">
        <!-- Other configuration. -->
    </kendo-treelist>

See Also

In this article