inputEx: JSON form builder
Date : 2008 05 13 Category : Tech & DevelopmentinputEx is "a javascript framework to build fields and forms" created by Eric Abouaf. The framework uses a JSON format to describe a form, such as:
PLAIN TEXT JAVASCRIPT:{ "fields" : [ { "type" : "group", "inputParams" : { "fields" : [ ], "name" : "", "tooltipIcon" : false, "value" : { }, "optionsLabel" : "Options" } } ], "optionsLabel" : "Options" }
which you can build with the help of the builder application.
Check out the getting started guide and if you like to build an application that looks like:
PLAIN TEXT JAVASCRIPT:init: function() { this.buildTree(); this.initContextMenu(); this.buildForm(); this.initEvents(); this.queryData(); }
rather than HTML, then this could be the tool for you!
