1

Navigator 工具具有显示通过frontend-config.js文件定义的自定义表格的能力。快速入门示例包含一个定义自定义合同列表的文件。

是否也可以显示自定义模板列表?

4

1 回答 1

0

要添加自定义模板列表,请使用source.type=="templates".

下面是一个自定义视图的示例,它将列出所有模板 ID 中包含“Iou:Iou”的模板:

  iouTemplates: {
    type: "table-view",
    title: "Iou Templates",
    source: {
      type: "templates",
      filter: [
        {
          field: "id",
          value: "Iou:Iou",
        }
      ],
      search: "",
      sort: [
        {
          field: "id",
          direction: "ASCENDING"
        }
      ]
    },
    columns: [
      {
        key: "id",
        title: "Template ID",
        createCell: ({rowData}) => ({
          type: "text",
          value: rowData.id
        }),
        sortable: true,
        width: 80,
        weight: 0,
        alignment: "left"
      }
    ]
  }
于 2019-12-16T14:32:08.610 回答