I'm using the built in form in my TelerikGrid with the EditMode="GridEditMode.Popup". I have not customized it at all. It works great. However, the Evinced tool was run against it for accessibility and the field is missing an accessible name. Is there a way to add something to the gridcolumn to give it that info. in the popup form? Or do I have to create a custom edit form for my 1 column/field to be edited?
Here's my grid in .NET10.
<TelerikGrid Data="@fictitiousNames"Width="800px"
Class="z-index-1"
Sortable="true"
EditMode="GridEditMode.Popup"
OnUpdate="@UpdateFictitiousName"
OnCreate="@AddFictitiousName"
OnEdit="@OnFictitiousNameEdit"
OnDelete="@DeleteFictitiousName">
<GridToolBarTemplate>
<GridCommandButton Command="Add"
Icon="@SvgIcon.Plus"
Class="k-button-sm"
OnClick="@(_ => { FictitiousNameTitle = "New Fictitious Name"; })">Add Fictitious Name</GridCommandButton>
</GridToolBarTemplate>
<GridSettings>
<GridPopupEditSettings Width="400px"
Height="400px"
Title="@FictitiousNameTitle">
</GridPopupEditSettings>
<GridPopupEditFormSettings>
<ButtonsTemplate>
@{
<GridCommandButton Command="Save" Icon="@SvgIcon.Save" class="k-button-sm k-button-solid-primary">
@if (context.IsNew)
{
<span>Save</span>
}
else
{
<span>Update</span>
}
</GridCommandButton>
<GridCommandButton Command="Cancel" Icon="@SvgIcon.Cancel" class="k-button-sm k-button-solid-primary">
<span>Cancel</span>
</GridCommandButton>
}
</ButtonsTemplate>
</GridPopupEditFormSettings>
</GridSettings>
<GridColumns>
<GridColumn Field="@(nameof(FictitiousNameDto.FictitiousName))" Title="Name" Width="60px" />
<GridCommandColumn Width="20px">
<GridCommandButton Command="Edit" Icon="@SvgIcon.Pencil">Edit</GridCommandButton>
<GridCommandButton Command="Delete" Icon="@SvgIcon.Trash">Delete</GridCommandButton>
</GridCommandColumn>
</GridColumns>
</TelerikGrid>
