Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
I have attached the project to this ticket and the Postgres SQL file required to run the project. To reproduce this please import the SQL file with dummy data and modify the appsettings.json connection string to your postgres database. Then go to the records page and try to add a new record. The DropDownList will not work.
Overview:
Currently if i have a complex field such as:
Record.RecordOverview.AreaId
In this scenario i want to add a new record and have multiple Area objects and i want to set the AreaId of Record.RecordOverview.AreaId via a DropDownList/ComboBox/AutoComplete. If i use GridEditSettings->Template and create a template for this input as such:
public void OnBegin(ActionEventArgsargs)
{
if (args.RequestType == Syncfusion.Blazor.Grids.Action.Save)
{
args.Data.RecordOverview.AreaId = AreaDropDown.Value;
}
}