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: docs/spfx/dynamic-data.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Connect SharePoint Framework components using dynamic data
3
3
description: High-level description on how to use dynamic data concept for connecting different SharePoint Framework components
4
-
ms.date: 07/01/2020
4
+
ms.date: 07/15/2020
5
5
ms.prod: sharepoint
6
6
localization_priority: Priority
7
7
---
@@ -17,13 +17,13 @@ You can connect two or more SharePoint Framework components together and exchang
17
17
18
18
## Expose data using dynamic data source
19
19
20
-
Dynamic data in the SharePoint Framework is based on the source-notification model. Components named as a dynamic data source, provide data and the SharePoint Framework when the data changes.
20
+
Dynamic data in the SharePoint Framework is based on the source-notification model. Components named as a dynamic data source, provide data and notify the SharePoint Framework when the data changes.
21
21
22
-
Other components on the page can subscribe to notifications issued by a dynamic data source. The SharePoint Framework notifies the consumer component that the source has notified it data changed. The consumer component then requests the specified data from the source component.
22
+
Other components on the page can subscribe to notifications issued by a dynamic data source. The SharePoint Framework notifies the consumer component that the source has notified its data has changed. The consumer component then requests the data from the source component.
23
23
24
24
Every dynamic data source implements the `IDynamicDataCallables` interface.
25
25
26
-
The following code demonstrates web part that displays a list of upcoming events. The events web part exposes information about the selected event to other components on the page in two ways: the complete event information and the ___location address.
26
+
The following code demonstrates a web part that displays a list of upcoming events. The events web part exposes information about the selected event to other components on the page in two ways: the complete event information and the ___location address.
27
27
28
28
```typescript
29
29
import {
@@ -378,7 +378,7 @@ To allow users to connect web parts to dynamic data sources available on the pag
378
378

379
379
380
380
> [!IMPORTANT]
381
-
> When using the standard UX to connect a web part to a dynamic data source, ensure, that the dynamic data source returns a value for the given dynamic property (in the previous example, there is an event selected in the list of events). If it doesn't, the UX will not be able to determine the type of data returned by the data source and setting up the connection will fail.
381
+
> When using the standard UX to connect a web part to a dynamic data source, ensure that the dynamic data source returns a value for the given dynamic property (in the previous example, there is an event selected in the list of events). If it doesn't, the UX will not be able to determine the type of data returned by the data source and setting up the connection will fail.
382
382
383
383
In its simplest form, the UI could be defined as follows:
0 commit comments