Consider this basic (experimental) code:
<SfGrid DataSource="@configs" Width="1200">
<GridColumns>
<GridColumn Field=@nameof(Definition.Description) HeaderText="Description" TextAlign="TextAlign.Left" MaxWidth="600"></GridColumn>
<GridColumn Field=@nameof(Definition.Name) HeaderText="Name" TextAlign="TextAlign.Left" MaxWidth="150"></GridColumn>
<GridColumn Field=@nameof(Definition.Scope) HeaderText="Scope" TextAlign="TextAlign.Left" Width="40"></GridColumn>
<GridColumn Field=@nameof(Definition.ConfigId) HeaderText="Config ID" TextAlign="TextAlign.Left" Width="120"></GridColumn>
</GridColumns>
</SfGrid>
I want the displayed column value for Definition.ConfigId to be forced uppercase, is there a straightforward way? The value is a string property (a GUID string) and it uses lowercase letters, we need this to be uppercase when displayed.