Skip to content

Commit 0268517

Browse files
committed
Dynamic data notes adjusting
1 parent 7068d66 commit 0268517

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

docs/spfx/dynamic-data.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Connect SharePoint Framework components using dynamic data
33
description: High-level description on how to use dynamic data concept for connecting different SharePoint Framework components
4-
ms.date: 11/08/2018
4+
ms.date: 09/16/2019
55
ms.prod: sharepoint
66
localization_priority: Priority
77
---
@@ -12,6 +12,10 @@ Using the dynamic data capability, you can connect SharePoint Framework client-s
1212

1313
![Three SharePoint Framework web parts connected to each other showing information about events](../images/dynamic-data-webparts.png)
1414

15+
16+
> [!NOTE]
17+
> Dynamic Data is the recommended pattern to share data between SharePoint Framework web parts or other components. It was introduced with the release of SharePoint Framework 1.7. If you are using older version of SharePoint Framework, this option is not available.
18+
1519
## Expose data using dynamic data source
1620

1721
Dynamic data in the SharePoint Framework is based on the source-notification model. Component designated as a dynamic data source, provides data and notifies about its changes. Other components on the page can subscribe to notifications issued by a dynamic data source. When handling notifications, dynamic data consumers can retrieve the current value of the dynamic data set exposed by the data source.

docs/spfx/web-parts/guidance/share-data-between-web-parts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Share data between client-side web parts
33
description: Approaches you can use to share data and store retrieved data across multiple web parts in SharePoint.
4-
ms.date: 01/10/2018
4+
ms.date: 09/16/2019
55
ms.prod: sharepoint
66
localization_priority: Priority
77
---
@@ -12,7 +12,7 @@ localization_priority: Priority
1212
When building client-side web parts, loading data once and reusing it across different web parts helps you improve the performance of your pages and decrease the load on your network. This article describes a number of approaches that you can use to share data across multiple web parts.
1313

1414
> [!NOTE]
15-
> When developing using SPFx v1.7.0 or newer it is recommended to use the [Dynamic Data feature of the SharePoint framework for passing data and events between web parts on page](../../dynamic-data.md).
15+
> When developing using SPFx v1.7.0 or newer it is recommended to use the [Dynamic Data feature of the SharePoint framework for passing data and events between web parts on page](../../dynamic-data.md).
1616
1717
## Why share data between web parts
1818

docs/spfx/web-parts/guidance/tutorial-share-data-between-web-parts-global-variable.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
---
22
title: Share data between web parts by using a global variable (tutorial)
33
description: Step-by-step instructions for sharing data between SharePoint client-side web parts.
4-
ms.date: 01/10/2018
4+
ms.date: 09/16/2019
55
ms.prod: sharepoint
66
localization_priority: Priority
77
---
88

99

1010
# Share data between web parts by using a global variable (tutorial)
1111

12-
When building client-side web parts, loading data once and reusing it across different web parts helps improve the performance of your pages and decrease the load on your network.
12+
When building client-side web parts, loading data once and reusing it across different web parts helps improve the performance of your pages and decrease the load on your network.
13+
14+
> [!NOTE]
15+
> When developing using SPFx v1.7.0 or newer it is recommended to use the [Dynamic Data feature of the SharePoint framework for passing data and events between web parts on page](../../dynamic-data.md).
1316
1417
> [!NOTE]
1518
> Before following the steps in this article, be sure to [set up your SharePoint client-side web part development environment](../../set-up-your-development-environment.md).

0 commit comments

Comments
 (0)