@universal-ember/table
    Preparing search index...
    • Get the columns in their current display order.

      This returns an array of columns sorted according to any reordering that has been applied via the ColumnReordering plugin. If no reordering has been applied, columns are returned in their original order.

      Type Parameters

      • DataType = unknown

      Parameters

      • table: Table<DataType>

        The table instance to get ordered columns from

      Returns Column<DataType>[]

      Array of columns in their current display order

      import { orderedColumnsFor } from '@universal-ember/table/plugins/column-reordering';

      const columns = orderedColumnsFor(table);
      // Use the ordered columns for rendering or other operations