You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12
Original file line number
Diff line number
Diff line change
@@ -457,6 +457,18 @@ export class AppComponent {
457
457
}
458
458
```
459
459
460
+
If your item template contains some *nested* components, declare it using the parameterless `dxTemplate` structural directive as follows:
461
+
462
+
```html
463
+
<dx-list>
464
+
<dxi-item>
465
+
<div*dxTemplate>
466
+
<dx-buttontext="I'm a nested child component"></dx-button>
467
+
</div>
468
+
</dxi-item>
469
+
</dx-list>
470
+
```
471
+
460
472
Angular has a built-in `template` directive. To define the `template` property of the configuration component (for example, `dxo-master-detail`), use the following code:
0 commit comments