Hi,
To make life easy, I made a few razor components of gridcolumns in seperate razor files. This works, except that the order of columns is wrong. The grid will generate with all the normal columns first, and then the external razor components. I can only solve this by making a razor component of every column or not making razor components at all. How can I solve this in a different way. I only want to make use of razor components when this makes sense.
Example:
<GridColumns>
<CustomColumnComponent Field="Id" />
<GridColumn Field="Name" />
</GridColumns>
This will generate in this order: Name | Id