Skip to content

Replies

0
Matt Wills
Matt Wills answered on Jun 10, 2022 2:17 PM

Or you could use CellTemplate to access the nested property

<Column T="Model" Field="HireDate" Title="Hired">
            <CellTemplate>
                @context.Item.HireDate.ToString("d")
            </CellTemplate>
        </Column>