KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
DynamicFormsEngine
★ 9
Open GitHub ↗
Dynamic forms engine for .NET
Download README (.md)
Explore Similar Repositories
blog_vue
:
blog build with vue2.x
SolibriBatchSetup
:
The HOK Solibri Batch Manager is designed to facilitate the use of 'Autorun' feature in Solibri Model Checker(SMC).
share-my-id
:
Simple MEAN app for creating collections of authenticated ORCID iDs
uniapp-cli
:
一套用于 WEB APP 开发 和 Mobile APP 开发的解决方案
passtrength
:
Fully responsive jQuery input password strength indicator plugin. Featuring multiple strength security indicators and show/hide password
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
DynamicFormsEngine
?
Download (.md)
# 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())*