react-json-schema-form-extras icon indicating copy to clipboard operation
react-json-schema-form-extras copied to clipboard

An assortment of extra widgets for Mozilla's JSON Schema Form.

Results 54 react-json-schema-form-extras issues
Sort by recently updated
recently updated
newest added

How can I render async typeahead inside table cell?

Hi, How do I get multiple values ​​in the submit and identify if it is a new item? "asyncTypeahead": { "url": "http://localhost:8080/en/jsonapi/autocomplete/art/art/tags", "id": "tags", "labelKey": "name", "newSelectionPrefix": "Add a new...

I would like to propose to add DidUpdate support to your typeahead field. Somenthing like it: ``` function isValidOptions(options) { return !!options && options.constructor === Array; } export class AsyncTypeaheadField...

I'm using the async typeahead with an API that returns data such as ``` [ {"id": "1", "text": "Product 1"}, {"id": "2", "text": "Product 2"}, {"id": "3", "text": "Product 3"},...

## The issue **What happens?** -> React app crashes when user is typing into asyncTypeahead field with an option `overrideOptions` is set to `true` **Expected behavior**: there should be no...