Skip to content
This repository was archived by the owner on Nov 30, 2018. It is now read-only.
/ jquery.dform Public archive

A flexible JavaScript Object and JSON to HTML converter with a focus on forms

Notifications You must be signed in to change notification settings

daffl/jquery.dform

Repository files navigation

@page index Home

Title: Home

The jQuery.dForm plugin allows you to create your HTML forms programmatically from JavaScript objects (and therefore JSON, too).

Usage:

(start code) var formdata = { "action" : "index.html", "method" : "get", "elements" : [ { "name" : "textfield", "label" : "Label for textfield", "type" : "text", "value" : "Hello world" }, { "type" : "submit", "value" : "Submit" } ] }; $("#myform").buildForm(formdata);

// Or to load the form definition via AJAX
$("#myform").buildForm("http://example.com/myform.json");

(end)

How to get it: <Download jQuery.dForm 0.1.3 at http://github.com/downloads/daffl/jquery.dform/jquery.dform-0.1.3.tar.gz>

How to get involved:

What it is for:

There are many server side web frameworks that support HTML form generation, but you often end up mixing client (e.g. JavaScript validation) and server side processing concerns together.

This plugin moves the generation of forms entirely on the client side so that the server just has to provide a JavaScript object (usually as JSON) that contains all the information needed to create this form. It is easily extensible for custom form elements and properties.

You should try this plugin if you want to

  • manage all your form related jQuery plugins in a unified way (jQuery UI and the Validation plugin supported out of the box)
  • scaffold forms from business objects of your server side framework
  • have an easy way to include jQuery UI elements and JavaScript validation
  • write JavaScript instead of HTML markup since your page doesn't run without JS anyway

Examples:

See some live demos at the page.

About

A flexible JavaScript Object and JSON to HTML converter with a focus on forms

Resources

Stars

Watchers

Forks

Packages

No packages published