我想使用一些配置对象来显示一些嵌套数据。这里是演示代码
可以看出,"customer.something"
是我需要访问的。现在可能有“N”级嵌套。网格使用field='customer.something'
. 如何使用我的做同样的事情template
<e-column field='customer.something' headerText='Other' editType='dropdownedit' [edit]='editParams' width=120>
这是 HTML 文件:
<ejs-grid #Grid [dataSource]='data' allowSorting='true'>
<e-columns>
<ng-template #colTemplate ngFor let-column [ngForOf]="colList">
<e-column [field]='column.field' [headerText]='column.header' textAlign='Right' width=90>
<ng-template #template let-data>
{{data[column.field] | currency:'EUR'}} <-- want to fix this line
</ng-template>
</e-column>
</ng-template>
</e-columns>
</ejs-grid>
<!-- <ejs-grid #Grid [dataSource]='data' allowSorting='true'>
<e-columns>
<e-column field='price' isPrimaryKey='true' headerText='Price' textAlign='Right' width=90></e-column>
<e-column field='customer.something' headerText='Other' editType='dropdownedit' [edit]='editParams' width=120>
</e-column>
</e-columns>
</ejs-grid> -->