0
File contain data with ngx-formly

我必须从后端进行 API 调用,实际上是删除调用。对于这种情况,我需要从我必须选择的行中获取详细信息。

在这种情况下,我需要从选定的行中获取 ID。

          fields: FormlyFieldConfig[] = [
            {
              key: 'investments',
              type: 'repeat',
              templateOptions: {
  

4

1 回答 1

1

通过添加 (select)="to.selectFN($event)" 解决

像下面

<ngx-datatable
      #table
      class="bootstrap"
      
      (select)="to.selectFN($event)"
 

于 2019-09-21T21:44:45.240 回答