I've created a custom GridColumn component with special formatting like so:
<GridColumn Field="@Field" Title="@Title" Width="@Width">
<Template Context="context">
@FormatValue(context)
</Template>
</GridColumn>
When I place this within a <GridColumns> element (within a <TelerikGrid>) it always appears last. I'm pretty sure it's related to this issue but I don't quite follow the solution. The first one says to put the custom component directly in the grid tag. As in directly under <TelerikGrid> rather than within <GridColumns> (where I have it now)?
I having the same issue with a custom <DropDownMenuItem> component in that it always appears last no matter where I place it within the <DropDownButtonItems> in a <TelerikDropDownButton>. This isn't quite as critical because all of my button items are custom components so I can arrange them properly. But the GridColumn is mixed with other normal GridColumn components and I'd rather not have to create custom components for all of them.
Any thoughts? This is .NET 9 with Telerik UI for Blazor 7.1