Hello,
I have the following basic Grid:
<SfGrid DataSource="@Datasource" >
<GridTemplates>
<DetailTemplate Context="dtCtx">
@{
<SfTextBox Width="300px" Placeholder="Find it" @bind-Value="@ivp.FilterText" />
}
</DetailTemplate>
</GridTemplates>
<GridColumns>
</GridColumns>
</SfGrid>
I would like to add extra functionalities inside the DetailTemplate including a textbox, but I can't type in it. Probably the Grid overrides the behaviour. I tried to add GridEditSettings - AllowEdit = true, but it didn't help.
How can I fix it?