What is Dynform?

DynForm is a JavaScript class that can help you to create dynamic form without hardcoding in Javascript and HTML. It uses own metalanguage built on JSON.

How it works?

DynForm uses Prototype framework. So, you need write in you head of html page:

<script type="text/javascript" src="path/to/prototype_v1.7.js"></script>
<script type="text/javascript" src="path/to/DynForm.js"></script>

NB DynForm uses version 1.7 of Prototype!

To launch DynForm on your website you need to write:

<script>
new DynForm( JSON, container );
</script>

Where container is a element in page, JSON - JSON object or string

Example 1.

And that's all?

I'm still work under documentation