Skip to content

Commit 34eb866

Browse files
Merge pull request SharePoint#6042 from KoenZomers/patch-29
Fixing several textual errors in dynamic-data.md
2 parents 1cc9665 + ea92eef commit 34eb866

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/spfx/dynamic-data.md

Lines changed: 5 additions & 5 deletions
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: 07/01/2020
4+
ms.date: 07/15/2020
55
ms.prod: sharepoint
66
localization_priority: Priority
77
---
@@ -17,13 +17,13 @@ You can connect two or more SharePoint Framework components together and exchang
1717
1818
## Expose data using dynamic data source
1919

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.
2121

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.
2323

2424
Every dynamic data source implements the `IDynamicDataCallables` interface.
2525

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.
2727

2828
```typescript
2929
import {
@@ -378,7 +378,7 @@ To allow users to connect web parts to dynamic data sources available on the pag
378378
![Standard UX for connecting SharePoint Framework web parts to dynamic data sources available on the page](../images/dynamic-data-connect-ui.png)
379379

380380
> [!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.
382382
383383
In its simplest form, the UI could be defined as follows:
384384

0 commit comments

Comments
 (0)