Hi Anthony,
Greetings from Syncfusion support.
Yes, we can use the Syncfusion controls inside editform. Please find the below code snippet and sample for your reference.
<EditForm Model="@exampleModel">
<DataAnnotationsValidator />
<SfTextBox @bind-Value="exampleModel.textVal"></SfTextBox>
<ValidationMessage For="@(() => exampleModel.textVal)" />
<SfDropDownList TItem="GameFields" TValue="string" PopupHeight="230px" Placeholder="Select a game" @bind-Value="exampleModel.Name" DataSource="@Games">
<DropDownListFieldSettings Text="Text" Value="ID"></DropDownListFieldSettings>
</SfDropDownList>
<ValidationMessage For="@(() => exampleModel.Name)" />
<button type="submit">Submit</button>
</EditForm>
|
Please find the sample below,
Please check the above sample and get back to us if you need further assistance.
Regards,
Sevvandhi N