Unplanned
Last Updated: 07 Dec 2021 10:22 by ADMIN
Dan
Created on: 06 Dec 2021 10:29
Category: Grid
Type: Feature Request
4
Columns Should Support the DisplayAttribute.Order Property

Please support Display(Order = ...) with autogenerated Grid columns.

Such functionality will also be useful for controlling the order of manually declared columns when using a custom component for reusable columns. For example: https://blazorrepl.telerik.com/cGOtbwOX21f6zQcy35 - the "Name" column is rendered last and currently one cannot control its order.

public class DateModel
{
  [Display(Order = 2)]
  public string Id { get; set; }
  [Display(Order = 1)]
  public string Text { get; set; }
}

 

0 comments