person2713
person2713
It is possible create schema with array consists from objects with different type? For example schema: ```` { "name": "Apple-DEP", "scenarios": { "bulk-enroll-devices": { "name": "Bulk Enroll Devices", "approach": "AppleDEP",...
I need to add autocomplete (autosuggestion) to my input field. Are there any examples or where i have to pass data to layout or to json.data?
I added layout to component: `public layout = [ '*', { type: 'checkbox', title: 'Include scenario?' } ];` Then I want to check value in checkbox with title 'Include scenario?'....
For example I have next html: ``` ` {{visibleForIntegration.get(integration.key) ? '▼' : '▶'}} {{integration.value.name}} {{visibleForIntegrationScenarioWraper(integration, scenario) ? '▼' : '▶'}} {{scenario.value.name}} ` ``` I wonder is there way mark json-schema...
## Issue type I'm submitting a (check one): [ ] Bug report [ ] Feature request [ ] Regression (something that used to work, but stopped working in a newer...
I saw this: https://github.com/json-schema-form/angular-schema-form/blob/development/docs/index.md#onchange. Will it be supported in this library?
It's would be wonderful if this library will support oneOf and allOf.
Example: ``` { "schema": { "configurationID":{ "title":"DF Configuration ID (do not change)", "type":"string", "default":"9146935570313860332" }, "sypActionID":{ "title":"SYP Action ID (do not change)", "type":"string", "default":"9146925485113854788" }, "orderID":{ "title":"Order ID", "type":"string" }...
I want to use json schema for rendering, but I have json that contain array from different object types (object structure). It is possible create schema for such array? I...
It's possible collapsible/expandable sections for objects use angular2-json-schema-form? Example: ``` { "schema": { "type": "object", "properties": { "Integrations": { "type": "array", "items": { "type": "object", "properties": { "Integration": { "type":...