复选框上的绑定功能已被ng2选中

时间:2018-07-25 20:33:56

标签: angular angular-material2 angular-formly

我正在处理Angular 5 + material 2 + ngx-formly形式。我很难以这种形式将函数绑定到“ selectable” templateOption上。这是该字段的代码:

fRow([

    inputRepeatPayment('partial_payments','m','',{
        model:Object.assign({},{
          payed:null,
          total:0
        }),
        removable:false,
        selectable:true,
        numbers:true,
        remove:()=>{
          //  this.onChange.emit({ invoiceLines: this.model.invoice_lines });
        },
        addBtn: 'Add',
        removeBtn: 'Delete',
        fieldArray: {

          fieldGroupClassName: 'row',

          fieldGroup: [fRow([
             fRow([
            inputCustom('currency', 'total', 'Totale', 'w-50-p', {})
            ,

          ]),fRow([
            inputDatepicker( 'payed', 'Pagata il', 'w-50-p', {}, {

            })

          ])

          ])]

        }
      },
      {
        hideExpression:'model.terms!="PART"',
      }
    ),
  ])

基本上,我需要一个复选框(如果已选中)将行推送到数组。 有人可以帮助我走正确的路吗?

0 个答案:

没有答案