Skip to content

Commit f703b2d

Browse files
committed
Freeze links to 16_2 version
1 parent 8a9d6f6 commit f703b2d

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Navigate to [http://127.0.0.1:8875/examples/](http://127.0.0.1:8875/examples/) i
139139
### <a name="static-option"></a>Static String Option Value ###
140140

141141
To specify a string widget's option statically
142-
(the [text](http://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxButton/Configuration/#text)
142+
(the [text](http://js.devexpress.com/Documentation/16_2/ApiReference/UI_Widgets/dxButton/Configuration/#text)
143143
option of dxButton):
144144

145145
```html
@@ -149,7 +149,7 @@ option of dxButton):
149149
### <a name="static-non-string-option"></a>Static Non-string Option Value ###
150150

151151
To specify a non-string widget's option statically
152-
(the [disabled](http://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxButton/Configuration/#disabled)
152+
(the [disabled](http://js.devexpress.com/Documentation/16_2/ApiReference/UI_Widgets/dxButton/Configuration/#disabled)
153153
option of dxButton):
154154

155155
```html
@@ -158,7 +158,7 @@ option of dxButton):
158158

159159
### <a name="event-handling"></a>Event Handling ###
160160

161-
To bind the dxButton’s [click](http://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxButton/Events/#click) event:
161+
To bind the dxButton’s [click](http://js.devexpress.com/Documentation/16_2/ApiReference/UI_Widgets/dxButton/Events/#click) event:
162162

163163
```html
164164
<dx-button (onClick)="handler()"></dx-button>
@@ -195,7 +195,7 @@ customizeLayers(elements) {
195195
### <a name="one-way-binding"></a>One-way Option Binding ###
196196

197197
If we want changes to the value of ‘bindingProperty’ of the host component to propagate to the
198-
[value](http://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxTextBox/Configuration/#value) of the dxTextBox widget,
198+
[value](http://js.devexpress.com/Documentation/16_2/ApiReference/UI_Widgets/dxTextBox/Configuration/#value) of the dxTextBox widget,
199199
a one-way binding approach is used:
200200

201201
```html
@@ -214,8 +214,8 @@ or vice versa from the widget to the bindingProperty:
214214
### <a name="custom-templates"></a>Custom Templates ###
215215

216216
In case you want to customize the rendering of a DevExtreme widget, we support custom templates. For instance, we can specify
217-
the [itemTemplate](http://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxList/Configuration/#itemTemplate)
218-
and [groupTemplate](http://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxList/Configuration/#groupTemplate)
217+
the [itemTemplate](http://js.devexpress.com/Documentation/16_2/ApiReference/UI_Widgets/dxList/Configuration/#itemTemplate)
218+
and [groupTemplate](http://js.devexpress.com/Documentation/16_2/ApiReference/UI_Widgets/dxList/Configuration/#groupTemplate)
219219
of the dxList widget as follows:
220220

221221
```html
@@ -236,11 +236,11 @@ The 'item' and 'group' names are default template names for the 'itemTemplate' a
236236
### <a name="components-with-transcluded-content"></a>Components with Transcluded Content ###
237237

238238
In addition to using dxTemplate, it is possible to put the content of the following widgets directly into the markup:
239-
[dxResizable](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxResizable/),
240-
[dxScrollView](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxScrollView/),
241-
[dxValidationGroup](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxValidationGroup/).
239+
[dxResizable](https://js.devexpress.com/Documentation/16_2/ApiReference/UI_Widgets/dxResizable/),
240+
[dxScrollView](https://js.devexpress.com/Documentation/16_2/ApiReference/UI_Widgets/dxScrollView/),
241+
[dxValidationGroup](https://js.devexpress.com/Documentation/16_2/ApiReference/UI_Widgets/dxValidationGroup/).
242242
For instance, we can set the content for
243-
the [dxScrollView](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxScrollView/) widget as shown below:
243+
the [dxScrollView](https://js.devexpress.com/Documentation/16_2/ApiReference/UI_Widgets/dxScrollView/) widget as shown below:
244244

245245
```html
246246
<dx-scroll-view>
@@ -285,7 +285,7 @@ export class AppComponent implements OnInit {
285285

286286
### <a name="devextreme-validation-features"></a>Using DevExtreme Validation Features ###
287287

288-
You can use the [built-in validators](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxValidator/Validation_Rules/),
288+
You can use the [built-in validators](https://js.devexpress.com/Documentation/16_2/ApiReference/UI_Widgets/dxValidator/Validation_Rules/),
289289
validation summary and other DevExtreme validation features with Angular 2 DevExtreme editors.
290290

291291

@@ -338,7 +338,7 @@ export class AppComponent {
338338
### <a name="configuration-components"></a>Configuration Components ###
339339

340340
You can use `dxo-` ('o' is a contraction of 'option') prefixed components to configure complex nested options for widgets.
341-
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:
341+
The following example demonstrates how to configure the [tooltip](https://js.devexpress.com/Documentation/16_2/ApiReference/Data_Visualization_Widgets/dxTreeMap/Configuration/tooltip/) option of the dxTreeMap widget:
342342

343343
```html
344344
<dx-tree-map [dataSource]="treeData">
@@ -363,7 +363,7 @@ export class AppComponent {
363363
```
364364

365365
You can also use `dxi-` ('i' is a contraction of 'item') prefixed components to configure complex collection options for widgets.
366-
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:
366+
The following example demonstrates how to configure the [columns](https://js.devexpress.com/Documentation/16_2/ApiReference/UI_Widgets/dxDataGrid/Configuration/columns/) option of the dxDataGrid widget:
367367

368368
```html
369369
<dx-data-grid [dataSource]="data">
@@ -389,7 +389,7 @@ export class AppComponent {
389389
```
390390

391391
To configure options that can accept a configuration object or an array of configuration objects, use `dxi-` prefixed components.
392-
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:
392+
The following example demonstrates how to configure the [valueAxis](https://js.devexpress.com/Documentation/16_2/ApiReference/Data_Visualization_Widgets/dxChart/Configuration/valueAxis/) option of the dxChart widget:
393393

394394
```html
395395
<dx-chart [dataSource]="data">
@@ -410,9 +410,9 @@ export class AppComponent {
410410
}
411411
```
412412

413-
It is possible to specify an item template inside the `dxi-` prefixed components and use Angular
413+
It is possible to specify an item template inside the `dxi-` prefixed components and use Angular
414414
[structural directives](https://angular.io/docs/ts/latest/guide/structural-directives.html) such as ngFor. Note that
415-
the available item properties are described in the [Default Item Template](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxList/Default_Item_Template/)
415+
the available item properties are described in the [Default Item Template](https://js.devexpress.com/Documentation/16_2/ApiReference/UI_Widgets/dxList/Default_Item_Template/)
416416
section of a corresponding widget documentation reference.
417417

418418
```html
@@ -454,7 +454,7 @@ Angular has a built-in `template` directive. To define the `template` property o
454454

455455
You can access a DevExtreme widget instance by using the Angular 2 component query syntax and the component's
456456
'instance' property. In the example below, the
457-
[refresh](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxDataGrid/Methods/#refresh)
457+
[refresh](https://js.devexpress.com/Documentation/16_2/ApiReference/UI_Widgets/dxDataGrid/Methods/#refresh)
458458
method of the dxDataGrid is called:
459459

460460

@@ -485,7 +485,7 @@ export class AppComponent implements OnChanges {
485485
## <a name="api-reference"></a>API Reference ##
486486

487487
DevExtreme Angular 2 components mirror
488-
[DevExtreme JavaScript API](http://js.devexpress.com/Documentation/ApiReference/) but use
488+
[DevExtreme JavaScript API](http://js.devexpress.com/Documentation/16_2/ApiReference/) but use
489489
[Angular 2 syntax](#usage-samples) for specifying widget options, subscribing to events and custom templates declaration.
490490

491491
## <a name="bundle-optimization"></a>Bundle Size Optimization ##

0 commit comments

Comments
 (0)