如何在自定义组件中使用DxTemplate

时间:2019-10-06 18:59:38

标签: angular ng-template devextreme-angular

我使用了DevExtreme库,如何将DxTemplate指令用于包装DxLookupComponent的自定义组件中?如果可能,如何进行?

我有一个“包装器”,可以为DxComponent(文本框,文本区域,日期框和选择框)添加更多功能,并且效果很好。但是我需要在包装器组件中使用DxTemplate指令以将模板显示到DxLookupComponent中。

我的外观代码如下:

<app-dx-lookup-wrapper ...(here I have some properties that will be pass to the DxLookupComponent )>

        <div *dxTemplate="let data of 'titleTemplate'">
        // How to proceed here
        </div>
        <div *dxTemplate="let data of 'itemTemplate'">
        // How to proceed here
        </div>
        <div *dxTemplate="let data of 'fieldTemplate'">
        // How to proceed here
        </div>

</app-dx-lookup-wrapper>

在我的包装器组件内部:

<app-dx-wrapper ...(properties of my wrapper)>
        <dx-lookup ...(here goes properties of the DxLookup)>
            <ng-content></ng-content>
        </dx-lookup>
</app-dx-wrapper>

1 个答案:

答案 0 :(得分:2)

也许您可以通过ContentChildren和自定义指令重用此方法:

首先让我们创建自定义指令-也许我找到了这个here

@Directive({
  selector: "[templateName]"
})
export class TemplateNameDirective {
  @Input() templateName = "";

  constructor(public templateRef: TemplateRef<any>) {}
}

AppDxLookupWrapperComponent.ts:

@ContentChildren(TemplateNameDirective) templates: QueryList<TemplateNameDirective>;

app-dx-lookup-wrapper.component.html:

<div *ngFor="let template of templates; let i = index">
  <ng-template
    *dxTemplate="let item of template.templateName"
    [ngTemplateOutletContext]="{ item: item }"
    [ngTemplateOutlet]="template.templateRef"
  ></ng-template>
</div>

然后您可以像下面这样使用“模板”:

<app-dx-lookup-wrapper>
  <ng-template let-item="item" templateName="titleTemplate">
        {{yourFunction(item)}}
  </ng-template>
  ... other ng-templates here
</app-dx-lookup-wrapper>

让我知道这是否可以帮助您开始。