Hi, I have a form that generates fields by looping through a List<FieldGroupModel>
. Each FieldGroupModel
contains a List<GeneralDetailModel>
, and for each GeneralDetailModel
, there are corresponding child components.
I need to validate this form using Radzen validators. In this scenario, can I use a single RadzenTemplateForm
? If so, what should the TItem
be? Alternatively, is it more appropriate to create a form for each FieldGroupModel
?