From 7de0984268c867ead68d5f0cee9d4a935cdf3123 Mon Sep 17 00:00:00 2001 From: Andrey Ovchinnikov Date: Fri, 30 Dec 2016 15:55:19 +0300 Subject: [PATCH 1/2] Readme improvement for template property of configuration components --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index da719471e..331f3b034 100644 --- a/README.md +++ b/README.md @@ -406,6 +406,11 @@ export class AppComponent { } ``` +Angular has a built-in `template` directive. To make Angular use the `template` input variable of the `dxo-master-detail` component you need to use square braces: +```html + +``` + ### Accessing a DevExtreme Widget Instance ### You can access a DevExtreme widget instance by using the Angular 2 component query syntax and the component's From 672cfd844808fb84e24dd114f7cb0af638558b9c Mon Sep 17 00:00:00 2001 From: Andrey Ovchinnikov Date: Fri, 30 Dec 2016 16:11:47 +0300 Subject: [PATCH 2/2] Readme improvement for template property of configuration components --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 331f3b034..a5ee28fb5 100644 --- a/README.md +++ b/README.md @@ -406,9 +406,9 @@ export class AppComponent { } ``` -Angular has a built-in `template` directive. To make Angular use the `template` input variable of the `dxo-master-detail` component you need to use square braces: +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: ```html - + ``` ### Accessing a DevExtreme Widget Instance ###