How can I create a section of fields with angular2 json schema form?

I'm using https://github.com/dschnelldavis/angular2-json-schema-form and my form HTML is:

<json-schema-form
[schema]="schema"
(onSubmit)="exampleOnSubmitFn($event)">
</json-schema-form>

My schema is:

this.schema = {
  type: "object",
  properties: {
    CCN: {
      required: true,
      type: "number",
      minimum: 1000000000,
      maximum: 99999999999999999999
    },
    Quarter: {
      type: 'string',
      required: true,
      enum: ['Q1', 'Q2', 'Q3', 'Q4']
    },
    Year: {
      type: 'string',
      required: true,
      enum: ['2018', '2019', '2020']  
    },
    covered_medi: {
      title: "Covered by Medicare/Medicaid",
      type: "number",
      required: true
    },
    covered_private: {
      title: "Covered by private insurance",
      type: "number",
      required: true
    },
    Uninsured: {
      type: "number",
      required: true
    },
  }
}

I want Quarter and Year to be in a separate section. I tried using the layout property:

this.layout = [{
  type: "fieldset",
  title: "Reporting Period",
  items: [{
    key: "Quarter"
  }, {
    key: "Year"
  }]
}]

But that seems to not work.


If you have installed and instantiated the provider. The only thing that can fail is the schema, examples, or the callback, test with an empty one.

ts

@Component({...})
export class MyComponent {

   public schema: any = {...}
   public onSubmit(event) {...}
   ... }

html

<json-schema-form
  [schema]="schema"
  (onSubmit)="onSubmit($event)">
</json-schema-form>

In this example, put the required out of each property.

链接地址: http://www.djcxy.com/p/41418.html

上一篇: 检查一个变量R内的各种DATE的差异

下一篇: 我如何创建一个angular2 json模式形式的字段部分?