Gitward
Gitward
This problem seems to be similar to https://github.com/ulion/jsonform/issues/5 In https://github.com/ulion/jsonform/blob/dev/lib/jsonform.js#L143 it says > Input fields that are not visible are automatically disabled > not to appear in the submitted form....
I tried the following code in the playground (http://ulion.github.io/jsonform/playground/) ``` JSON { "schema": { "name": { "type": "string", "title": "Name", "required": true } }, "form": [ "name" ], "onSubmit": function...