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/viva/get-started/build-first-sharepoint-adaptive-card-extension.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: Build your first SharePoint Adaptive Card Extension
3
3
description: Adaptive Card Extensions (ACEs) are a new SharePoint Framework component type, which enable developers to build rich, native extensions to Viva Connections' Dashboards and SharePoint Pages. In this tutorial, you'll build and explore your first ACE.
4
-
ms.date: 07/27/2021
4
+
ms.date: 08/05/2021
5
5
ms.prod: sharepoint
6
6
localization_priority: Priority
7
7
---
@@ -49,7 +49,7 @@ The following arguments are used in the previous command:
49
49
-`-l`: skips tests and `tslint` to make the inner loop faster
50
50
-`--nobrowser`: skips trying to launch the `localhost` test page
51
51
52
-
Once local webserver is running, navigate to the hosted workbench: `https://{tenant}.sharepoint.com/_layouts/15/workbench.aspx`
52
+
Once local webserver is running, navigate to the hosted Workbench: `https://{tenant}.sharepoint.com/_layouts/15/workbench.aspx`
53
53
54
54
Open the Web Part Toolbox and select your ACE:
55
55
@@ -70,7 +70,7 @@ The second way an ACE can render is called the **Quick view**. When you interact
70
70
> [!NOTE]
71
71
> ACE interaction is disabled while in **Edit** mode. The Workbench or Page must be in *Preview* or *Read* mode to interact with the ACE.
72
72
73
-
Switch the workbench to **Preview** mode.
73
+
Switch the Workbench to **Preview** mode.
74
74
75
75
:::image type="content" source="../../../images/viva-extensibility/lab1-preview.png" alt-text="Set the workbench to preview mode":::
The `renderCard()` method is `virtual` that returns a string identifier to a registered view; more on view registration later. This method is invoked during the **initial** render of the Card view.
107
+
The `renderCard()` method is `virtual` that returns a string identifier to a registered View; more on View registration later. This method is invoked during the **initial** render of the Card view.
108
108
109
109
If `renderCard()` isn't overridden, then a default Card view will be rendered.
110
110
@@ -256,7 +256,7 @@ public get onCardSelection(): IQuickViewCardAction | IExternalLinkCardAction | u
256
256
257
257
Selecting the Card will now open the Quick view.
258
258
259
-
### Quick Views
259
+
### ACE Quick Views
260
260
261
261
Locate and open the following file: **./src/adaptiveCardExtensions/helloWorld/quickView/QuickView.ts**.
0 commit comments