I used DevExtreme library, How to use DxTemplate directive into a custom Component that wrap the DxLookupComponent ? If it is possible, how to proceed ?
I have a "wrapper" that add more functionnalities to DxComponent (Textbox, Textarea, Datebox and Selectbox) and it works well. But I need to use the DxTemplate directive into my wrapper Component to display template into the DxLookupComponent.
My look code look like this :
<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>
Inside my wrapper component :
<app-dx-wrapper ...(properties of my wrapper)>
<dx-lookup ...(here goes properties of the DxLookup)>
<ng-content></ng-content>
</dx-lookup>
</app-dx-wrapper>