All Projects → mcintyre321 → Formfactory

mcintyre321 / Formfactory

Licence: mit
MVC5, Core or standalone - Generate rich HTML5 forms from your ViewModels, or build them programatically

Projects that are alternatives of or similar to Formfactory

grav-plugin-form
Grav Form Plugin
Stars: ✭ 48 (-82.16%)
Mutual labels:  form-builder
Notify.Me
Simple host application to provide send/receive feature for any kind of notifications and messages between client(s) and the host. The application is based on ASP.NET Core and SignalR to demostrate some features of these things...
Stars: ✭ 28 (-89.59%)
Mutual labels:  asp-net-core
Unitynuget
Provides a service to install NuGet packages into a Unity project via the Unity Package Manager
Stars: ✭ 257 (-4.46%)
Mutual labels:  asp-net-core
ContosoLending
An ASP.NET Core 3.1 app showcasing gRPC, server-side Blazor, SignalR, and C# 8.
Stars: ✭ 15 (-94.42%)
Mutual labels:  asp-net-core
xamarin-chat-signalr
Xamarin Forms Modern Chat Using SignalR ASP.NET
Stars: ✭ 12 (-95.54%)
Mutual labels:  asp-net-core
OrderAppWithRazorPages
Razor Pages example showing a complex page model
Stars: ✭ 30 (-88.85%)
Mutual labels:  asp-net-core
PasswordGenerator
A simple C# helper class for ASP.NET Core to generate a random password with custom strength requirements: min length, uppercase, lowercase, digits & more
Stars: ✭ 27 (-89.96%)
Mutual labels:  asp-net-core
Smidge
A lightweight runtime CSS/JavaScript file minification, combination, compression & management library for ASP.Net Core
Stars: ✭ 267 (-0.74%)
Mutual labels:  asp-net-core
AspNetCoreUploadingProgress
File uploading with progress bar in ASP.NET Core
Stars: ✭ 31 (-88.48%)
Mutual labels:  asp-net-core
React Reactive Form
Angular like reactive forms in React.
Stars: ✭ 259 (-3.72%)
Mutual labels:  form-builder
AspNetCore-ReCAPTCHAv3
reCAPTCHA v3 Usage in Asp.Net Core MVC
Stars: ✭ 17 (-93.68%)
Mutual labels:  asp-net-core
fform
Flexibile and extendable form builder with constructor
Stars: ✭ 26 (-90.33%)
Mutual labels:  form-builder
netcore-wcf-service-proxy
Example of consuming multiple WCF services using a proxy implementation in a ASP.NET Core Web-application.
Stars: ✭ 42 (-84.39%)
Mutual labels:  asp-net-core
Volvox.Helios-old
Powerful, modular, web-managed, open-source Discord bot created by a community for communities.
Stars: ✭ 51 (-81.04%)
Mutual labels:  asp-net-core
Html
Laravel package designed to generate common HTML components
Stars: ✭ 265 (-1.49%)
Mutual labels:  form-builder
blazor-tailwindcss-template
This template demostrates the integration of tailwindcss with blazor and covers important features like hot-reload and css isolation
Stars: ✭ 38 (-85.87%)
Mutual labels:  asp-net-core
AspNet5GeoElasticsearch
ASP.NET Core MVC Geo Elasticsearch Swashbuckle Swagger
Stars: ✭ 38 (-85.87%)
Mutual labels:  asp-net-core
Formvuelate
Dynamic schema-based form rendering for VueJS
Stars: ✭ 262 (-2.6%)
Mutual labels:  form-builder
Form Create
🔥🔥🔥 强大的动态表单生成器|form-create is a form generation component that can generate dynamic rendering, data collection, verification and submission functions through JSON.
Stars: ✭ 3,698 (+1274.72%)
Mutual labels:  form-builder
Laraform
Reactive Form Builder for Vue.js with Laravel Support
Stars: ✭ 259 (-3.72%)
Mutual labels:  form-builder

FormFactory - dynamic HTML form engine

Visit http://formfactoryaspmvc.azurewebsites.net/ for live documentation and to see what FormFactory can do!

Installation

For ASP.NET MVC 5

install-package FormFactory install-package FormFactory.AspMvc install-package EmbeddedResourceVirtualPathProvider * (or you can install FormFactory.Templates if you don't want to use the EmbeddedResourceVirtualPathProvider)

For ASP.NET MVC Core

install-package FormFactory install-package FormFactory.AspNetCore configure core to serve embedded files - see startup.cs lines 36 and 60

For both

Add the assets to your page <link href="/Content/FormFactory/FormFactory.css" rel="stylesheet" type="text/css"/> <script src="/Scripts/FormFactory/FormFactory.js" type="text/javascript"></script>

How to use it

Inside an cshtml file: @FF.PropertiesFor(someObject).Render(Html);

.PropertiesFor(someObject) will reflect over the someObject and create an enumerable of PropertyVm objects, and .Render(Html) will render each object out the page

See the documentation site for how to mark up your viewmodel

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].