Skip to content
This repository has been archived by the owner on Nov 2, 2020. It is now read-only.

mertcanyalhi/DynamicFormsEngine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

DynamicFormsEngine

Dynamic forms engine for .NET Generates bootstrap forms dynamically from a given class.

Getting Started

Get DynamicFormsEngine package from NuGet

Install-Package DynamicFormsEngine

In your controller action, generate a new Form object and pass the model class type.

Form form = new Form();

form = FormGeneratorUtility.GetForm(typeof(ModelClass));
form.Serialize = true;

return View(form);

In your view, set your model to DynamicFormsEngine.Form (@model DynamicFormsEngine.Form) and call HTML renderer with @Html.Raw(Model.RenderHtml())

About

Dynamic forms engine for .NET

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages