jsonform icon indicating copy to clipboard operation
jsonform copied to clipboard

Build forms from JSON Schema. Easily template-able. Compatible with Twitter Bootstrap out of the box.

Results 24 jsonform issues
Sort by recently updated
recently updated
newest added

On line 1305 of jsonform.js there is the line ``` evt.stopPropagation(); ``` Which means I'm unable to listen for then someone clicks it. I need this event as I have...

We have found that if you have a textfield within a fieldset and the default value is something like: sometext[1] When the form is rendered, line 2864: ``` this.value =...

Thought a bower package might be useful for this. I've created a basic `bower.json` using the information from `package.json`, and included the current dependencies. Hope there's no objection to releasing...

I understand ZSchema-browser supposedly does some json-validation. However, I have disabled this JS file and I can't see any difference. The jsonform still validates successfully on submit. Is it an...

I have used a few methods to display conditional fields with `radios` and `checkbox` from this branch. However, I cannot see that it is possible to display conditional fields "A...

Using customFormItems to customise sub-form items doesn't seem to support `"disabled": true`. In the following example, the "text.text1" field should be disabled: ``` json { "schema": { "choice": { "type":...

I wrote a detailed [question on stackoverflow](http://stackoverflow.com/questions/31777279/adding-properties-to-fields-in-a-json-schema-to-tightly-couple-the-schema-with-a) if anyone could answer, but I'll ask the concise version here: I would love to leverage something like jsonform so that my UI...

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....

The examples for event handlers will not pass through a strict JSON parser, which makes it impossible to store the schema as pure json (e.g. external to the app, or...

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...