Skip to content

Commit 26751b2

Browse files
Merge pull request #402 from DevExpress/widget_name
Refactor widgets names
2 parents eef33f8 + 97b5dcf commit 26751b2

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -206,12 +206,12 @@ The 'item' and 'group' names are default template names for the 'itemTemplate' a
206206

207207
### <a name="components-with-transcluded-content"></a>Components with Transcluded Content ###
208208

209-
In addition to using dxTemplate, it is possible to put the content of the following widgets directly into the markup:
210-
[DxResizable](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxResizable/),
211-
[DxScrollView](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxScrollView/),
212-
[DxValidationGroup](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxValidationGroup/).
213-
For instance, we can set the content for
214-
the [DxScrollView](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxScrollView/) widget as shown below:
209+
In addition to using dxTemplate, it is possible to put the content of the following widgets directly into the markup:
210+
[dxResizable](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxResizable/),
211+
[dxScrollView](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxScrollView/),
212+
[dxValidationGroup](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxValidationGroup/).
213+
For instance, we can set the content for
214+
the [dxScrollView](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxScrollView/) widget as shown below:
215215

216216
```html
217217
<dx-scroll-view>
@@ -309,7 +309,7 @@ export class AppComponent {
309309
### <a name="configuration-components"></a>Configuration Components ###
310310

311311
You can use `dxo-` ('o' is a contraction of 'option') prefixed components to configure complex nested options for widgets.
312-
The following example demonstrates how to configure the [tooltip](https://js.devexpress.com/Documentation/ApiReference/Data_Visualization_Widgets/dxTreeMap/Configuration/tooltip/) option of the TreeMap widget:
312+
The following example demonstrates how to configure the [tooltip](https://js.devexpress.com/Documentation/ApiReference/Data_Visualization_Widgets/dxTreeMap/Configuration/tooltip/) option of the dxTreeMap widget:
313313

314314
```html
315315
<dx-tree-map [dataSource]="treeData">
@@ -333,8 +333,8 @@ export class AppComponent {
333333
}
334334
```
335335

336-
You can also use `dxi-` ('i' is a contraction of 'item') prefixed components to configure complex collection options for widgets.
337-
The following example demonstrates how to configure the [columns](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxDataGrid/Configuration/columns/) option of the DataGrid widget:
336+
You can also use `dxi-` ('i' is a contraction of 'item') prefixed components to configure complex collection options for widgets.
337+
The following example demonstrates how to configure the [columns](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxDataGrid/Configuration/columns/) option of the dxDataGrid widget:
338338

339339
```html
340340
<dx-data-grid [dataSource]="data">
@@ -360,7 +360,7 @@ export class AppComponent {
360360
```
361361

362362
To configure options that can accept a configuration object or an array of configuration objects, use `dxi-` prefixed components.
363-
The following example demonstrates how to configure the [valueAxis](https://js.devexpress.com/Documentation/ApiReference/Data_Visualization_Widgets/dxChart/Configuration/valueAxis/) option of the Chart widget:
363+
The following example demonstrates how to configure the [valueAxis](https://js.devexpress.com/Documentation/ApiReference/Data_Visualization_Widgets/dxChart/Configuration/valueAxis/) option of the dxChart widget:
364364

365365
```html
366366
<dx-chart [dataSource]="data">

0 commit comments

Comments
 (0)