I am trying to use the datagrid with a filter template based on a column value. One of five values would return an image file to display. It doesn't look like the context only supports a path string? Is there anyway of using a function to return the image file? Much like row or cell render?
<RadzenGridColumn Width="80px" TItem="Logs" Property="Logs.Level" Title="Level">
<Template Context="Logs">
<div>@Logs.Level</div>
<RadzenImage Path="@GetIcon"/>
</Template>
</RadzenGridColumn>