Как использовать для цикла в NG2 умный стол angular2? - PullRequest
0 голосов
/ 12 мая 2018

Я не знаю, как использовать цикл в NG2 Smart table.

Здесь я упомянул выходное изображение Backend. из этого я хочу напечатать категорию из подробности список.

А также я упомянул мои component.ts здесь. enter image description here

component.ts

settings = {
    mode: 'external',
    hideSubHeader: true,
    actions: false,

    edit: {
      editButtonContent: '<i class="nb-edit"></i>',
      saveButtonContent: '<i class="nb-checkmark"></i>',
      cancelButtonContent: '<i class="nb-close"></i>',
    },
    columns: {

      eno: {
        title: 'S.NO',
        type: 'string',
        filter: {
          type: 'text',
        },
        editable: false,
        addable: false,
        valuePrepareFunction: (cell, row) => {
          this.j = this.j + 1
          return this.j
        },
      },
      choose_payee : {
        title: 'Payee Name',
        type: 'string',
      },

      payment_date: {
        title: ' Payment Date',
        type: 'string',
      },
      pay_method: {
        title: 'Payment Method',
        type: 'string',
      }, 
      total: {
        title: 'Total',
        type: 'string',
      },




    },
  };
...