Allows to override some default form settings for items (placed at the beginning of data block).
For example, attribute position. You'd like to place labels of several items to left. You can specify position:“label-left” for each item or just put this stuff into settings item once.
In case you specify the same attribute in settings and item: setting's value will be ignored.
var formData = [ {type: "settings", position: "label-left", labelWidth: 120, inputWidth: 120, labelAlign: "right"}, {type: "input", label: "Name", value: "John Smith", labelAlign: "left"}, {type: "password", label: "Password", value: "123", labelAlign: "center"}, {type: "select", label: "Session", options:[ {value: "1", text: "Administration"}, {value: "2", text: "Design"}, {value: "3", text: "Manage Articles"} ]} ];