[Solved] Get GridColumn Title in GridColumnState

1 Answer 16 Views
Grid
Aditya
Top achievements
Rank 1
Veteran
Aditya asked on 17 Jun 2026, 02:53 PM
I need to display Grid Metadata .. for each column in the grid ... display the Title along with the mapped internal field

For example for the following GridColumn

<GridColumn Field=@nameof(Orders.KeyID) Title="Order ID" />

I will need to display that 

Order ID is mapped to Orders.KeyID field

The issue is TelerikGrid GridColumnState has Field property but does not have Title property.

Will it be possible for Telerik to include Title in GridColumnState?

1 Answer, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 18 Jun 2026, 06:04 AM

Hi Aditya,

The Grid column state contains information that users can change, such as sorting state, filtering state, column order, column width, etc. The only exception is the column Id, which is the identifier. We also have a feature request to include the column Field in the Grid state, which can make more sense than the Title. The column titles are not subject to user control, so that's why they are not included in the Grid state. Moreover, column titles depend on the localization and business decisions, so they are not reliable for application logic.

If you want to reuse the Grid column metadata, then populate the column titles from a Dictionary or some other collection, so that you can map the titles to something else, for example, column Id or column index in the Grid declaration.

In general, you can rely on the fact that the column order in the state matches the column order in the Grid declaration. Check this KB article: Get Grid Column Index, Width and Visibility from the Grid State

Regards,
Dimo
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
Grid
Asked by
Aditya
Top achievements
Rank 1
Veteran
Answers by
Dimo
Telerik team
Share this question
or