Unplanned
Last Updated: 31 Oct 2023 17:20 by ADMIN
Dan
Created on: 06 Dec 2021 10:29
Category: Grid
Type: Feature Request
6
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; }
}

 

2 comments
ADMIN
Hristian Stefanov
Posted on: 31 Oct 2023 17:20

Hi Stéphane,

Thank you for showing interest in the feature.

You can subscribe to the item to receive email notifications for status updates.

Regards,
Hristian Stefanov
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Telerik family, check out our getting started resources!
Stéphane
Posted on: 27 Oct 2023 19:09
This would be nice !