interface GridColumnMenuSlotProps {
    displayOrder?: number;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

Properties

displayOrder?: number

Every item has a displayOrder based which it will be placed before or after other items in the column menu, array.prototype.sort is applied to sort the items. Note: If same displayOrder is applied to two or more items they will be sorted based on the definition order

100