Trying to create a custom grid column component. have a general example working based on the example given on the forum
is there any way to access properties of the GridColumn inside the template code?
the value passed to the template is the row but i also need to access the field name and other properties to format the data
similar to this but use properties of the GridColumn object such as Field and my own properties
RenderFragment<object> TemplateCol = (value) =>
{
return b =>
{
b.AddContent(0,
@<div>Template Column : @((value as Order).CustomerID)</div>
);
};
};