Quickstart
Quick start on Dynamic Form Builder
Lets build a simple contact from using the Dynamic Form Builder, which will demonstrate how to use this tool.
Step 1 : Create a Web Assembly Template from Visual Studio.

Install the Nuget packge Blazor.UI.FormGenerator
NuGet\Install-Package Blazor.UI.FormGenerator -Version 0.0.1.3
Create Contact Form
Create a ContactForm.razor page
Create a ContactForm.razor.cs file
Under "wwwroot\json-form" -> "contact-form.json"
Contact Form Code
[
{
"Card": "Contact-Form",
"Elevation": 4,
"Spacing": 2,
"Outlined": false,
"Class": "ma-4",
"GridPosition": {
"xs": 12,
"sm": 12,
"md": 12,
"lg": 12
},
"Header": {
"Enable": true,
"Divider": false,
"Avatar": {
"Enable": true,
"Color": "Primary",
"Icon": "Material.Filled.PersonPin",
"Variant": "Outlined"
},
"Content": {
"Enable": true,
"Title": "Contact Form",
"SubTitle": "Sales Contact Form"
},
"CardAction": {
"Enable": true,
"Color": "Primary",
"Icon": "Material.Filled.Email"
}
},
"Footer": {
"Enable": true,
"CustomClass": "d-flex justify-end flex-grow-1 gap-2",
"EnableCancel": false,
"CancelText": "Cancel",
"CancelColor": "Secondary",
"CancelVariant": "Text",
"EnableSubmit": true,
"SubmitText": "Contact Sales",
"SubmitColor": "Primary",
"SubmitVariant": "Filled"
},
"Fields": [
{
"FieldName": "FirstName",
"Label": "First Name",
"InputType": "Text",
"IsReadOnly": false,
"IsRequired": true,
"DefaultValue": "",
"Variant": "Text",
"GridPosition": {
"xs": 12,
"sm": 6,
"md": 6,
"lg": 6
}
},
{
"FieldName": "LastName",
"Label": "Last Name",
"InputType": "Text",
"IsReadOnly": false,
"IsRequired": true,
"DefaultValue": "",
"Variant": "Text",
"GridPosition": {
"xs": 12,
"sm": 6,
"md": 6,
"lg": 6
}
},
{
"FieldName": "Email",
"Label": "Email",
"InputType": "Email",
"IsReadOnly": false,
"IsRequired": true,
"DefaultValue": "",
"Variant": "Text",
"GridPosition": {
"xs": 12,
"sm": 12,
"md": 12,
"lg": 12
}
},
{
"FieldName": "Message",
"Label": "Message",
"InputType": "MultiLine",
"Line": 5,
"IsReadOnly": false,
"IsRequired": false,
"DefaultValue": "",
"Variant": "Text",
"GridPosition": {
"xs": 12,
"sm": 12,
"md": 12,
"lg": 12
}
}
]
}
]
Contact Form Output
Dark Mode

Light Mode

How to get Contact Form Data?
To get the data from the Dynamic Form, we can use GetMudFrom
method from the DynamicMudForm
Cotrol.

Also, If we need to attach some action on the card action, we can also do the same, example in the above method "CardActionClick()
" method has been attached to the DynamicForm
to perform card actions.

The complete code been attached below.
Last updated