DataGrid and "Context"-Property

Why is the property "context" not available on my DataGrid???
Im using Radzen Blazor 5.7.3

There is no such DataGrid property.

I have a datagrid with a template column conainig a button and i want do handle click event on this row button. I Asked chatGPT (sorry):


    <!-- Neue Spalte mit einem Button -->
    <RadzenDataGridColumn TItem="AuthorizedUser" Title="Aktionen">
        <Template **Context**="authuser">
            <RadzenButton Text="entfernen" ButtonStyle="ButtonStyle.Primary" Icon="delete" 
                          Click="@(() => DeleteUser(authuser))" />
        </Template>
    </RadzenDataGridColumn>
</Columns>

Maybe checking our demos, source code of the components and our API reference and forum will be more useful.