Ae.MudBlazor.Forms
1.0.0
dotnet add package Ae.MudBlazor.Forms --version 1.0.0
NuGet\Install-Package Ae.MudBlazor.Forms -Version 1.0.0
<PackageReference Include="Ae.MudBlazor.Forms" Version="1.0.0" />
paket add Ae.MudBlazor.Forms --version 1.0.0
#r "nuget: Ae.MudBlazor.Forms, 1.0.0"
// Install Ae.MudBlazor.Forms as a Cake Addin #addin nuget:?package=Ae.MudBlazor.Forms&version=1.0.0 // Install Ae.MudBlazor.Forms as a Cake Tool #tool nuget:?package=Ae.MudBlazor.Forms&version=1.0.0
MudBlazor.Forms
MudBlazor.Forms is a library built on top of MudBlazor for creating responsive, dynamic, and highly customizable forms in Blazor applications. It simplifies form handling, validation, and binding, offering a clean and efficient way to work with structured data inputs in Blazor.
Features
- Seamless Blazor Integration: Easily integrate with MudBlazor components for a consistent and beautiful UI.
- Dynamic Form Creation: Automatically generate forms based on data models with minimal configuration.
- Form Validation: Built-in validation support, compatible with Data Annotations and custom validation logic.
- Custom Field Types: Support for custom field types and layouts, making forms flexible and extensible.
- Responsive Design: Fully responsive form components out-of-the-box, adapting to various screen sizes.
- Styled by MudBlazor: Use MudBlazor's theming and design system for professional, modern UI styling.
Installation
You can install MudBlazor.Forms via the NuGet package manager:
Install-Package MudBlazor.Forms
Usage
See Examples
Import the required namespaces into your Blazor project.
@using MudBlazor
@using MudBlazor.Forms
- Annotate your classes or use fluent API to define validation rules.
public class InteractiveStarship
{
[AeFormIgnore]
private int ID { get; set; } = 1;
[Required]
[StringLength(16, ErrorMessage = "Identifier too long (16 character limit).")]
[MudForm(Placeholder ="Starship identifier...")]
public string Identifier { get; set; }
[Required]
[RegularExpression(@"^([\w\.\-]+)@([\w\-]+)((\.(\w){2,3})+)$", ErrorMessage = "Invalid Email Address")]
[StringLength(20, ErrorMessage = "Identifier too long (16 character limit).")]
[MudForm(Placeholder = "Enter Email...")]
public string CaptainsEmail { get; set; }
[Editable(false)]
[MudForm(Placeholder ="Describe your starship including crew size")]
public string Description { get; set; }
[Required]
[MudForm(IsDropDown =true)]
public string Classification { get; set; }
[Required]
[MudForm(IsDropDown = true)]
public string SubClassification { get; set; }
[Range(1, 100000, ErrorMessage = "Accommodation invalid (1-100000).")]
[MudForm(Label = "Maximum Accomodation")]
[DisplayFormat(DataFormatString = "C2")]
public double MaximumAccommodation { get; set; }
[MudForm(Label = "Maintenance Cost")]
[Editable(false)]
[DisplayFormat(DataFormatString = "C2")]
public double MaintenanceCost => MaximumAccommodation * 100;
[Required]
[Range(typeof(bool), "true", "true", ErrorMessage = "This form disallows unapproved ships.")]
[MudForm("Validated Design")]
public bool IsValidatedDesign { get; set; }
[Required]
[MudForm("Production Date")]
[DisplayFormat(DataFormatString = "yyyy/MM/dd")]
public DateTime ProductionDate { get; set; }
[Editable(false)]
[DisplayFormat(DataFormatString = "yyyy/MM/dd")]
public DateTime? FirstFlightDate { get; set; }
public int? SubLightEngines { get; set; }
}
- Use MudForm components in your Blazor pages to generate dynamic forms.
<MudModelForm T="InteractiveStarship"
Model="@_starship"
SubmitLabel="Save changes"
OnValidSubmit="HandleValidSubmit"
IsReadOnly="false"
CancelLabel="Cancel"
IsSubmitEnabled="true"
OnConfigure="OnConfigure"
OnCancel="CreateStarship" />
- Customize the form using MudBlazor's extensive styling and component system.
Contributing
Contributions are welcome! Please feel free to open issues or submit pull requests to help improve this project.
License
MudBlazor.Forms is licensed under the MIT License. See LICENSE for more details.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- FluentValidation (>= 10.4.0)
- MudBlazor (>= 7.13.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 77 | 10/23/2024 |
0.5.22329.4-beta | 9,599 | 11/25/2022 |
0.5.22321.2-beta | 266 | 11/17/2022 |
0.5.22285.2-beta | 490 | 10/12/2022 |
0.5.22264.1-beta | 154 | 9/21/2022 |
0.5.22262.2-beta | 183 | 9/19/2022 |
0.5.22255.6-beta | 127 | 9/13/2022 |
0.5.22255.5-beta | 126 | 9/12/2022 |
0.5.22255.4-beta | 127 | 9/12/2022 |
0.5.22244.2-beta | 146 | 9/1/2022 |
0.5.22240.2-beta | 160 | 8/29/2022 |
0.5.22238.1-beta | 134 | 8/26/2022 |
0.5.22223.6-beta | 157 | 8/11/2022 |