json-forms icon indicating copy to clipboard operation
json-forms copied to clipboard

JSON Schema to HTML form generator, supporting dynamic subschemas (on the fly resolution). Extensible and customizable library with zero dependencies. Bootstrap add-ons provided

Results 64 json-forms issues
Sort by recently updated
recently updated
newest added

Hello, it would be nice to provide some example how to customize and extend this library (since it is titled to be extendable and customizable). Eg. if someone wants a...

This is very minor, but I think the colon should not be there here https://github.com/brutusin/json-forms/blob/master/src/js/brutusin-json-forms.js#L1034 User can choose to add a colon in his decorator.

I didn't notice any mention of browser support in the read.me or the source file. I assume Chrome, Firefox, Edge and Safari are supported, but what's the minimum version of...

help wanted

Please add support for radio button.

Can we have support to add static properties in the schema such that it's replicated into the data. ``` // schema.json // code before this "someKey": { "type": "array", "items":...

Is it possible to configure json-forms to reder forms in DIVS or another container instead of a table? Thanks

Could you please provide a way to integrate with Angular 2.0. Basically our requirement is to include the dynamic form only for few pages and static for few. Could you...

It would be great to be able to automatically update fields with the values of other fields as they change. The [json-editor](https://github.com/jdorn/json-editor) project supports this with the `watch` and `template`...

for the following schema: ``` javascript{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "typeName": "IncomingFileIODto", "additionalProperties": false, "required": [ "EndPoint", "Title", "Comment", "Status", "OwnerBoxId" ], "properties": { "ChannelTypeName": { "type": "string", "readOnly": true...