Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/declarative-customization/site-design-json-schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ Use the **setSiteBranding** verb to specify the navigation layout, the header la

- **navigationLayout** – Specify the navigation layout as Cascade or Megamenu
- **headerLayout** – Specify the header layout as Standard or Compact
- **headerBackground** – Specify the header background as None, Neutral, Soft or Stong
- **headerBackground** – Specify the header background as None, Neutral, Soft or Strong

#### Example

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ The following articles describe how to create no-code solutions and provide link
|**Article**|**Description**|
|:-----|:-----|
| [SharePoint Composites Handbook](sharepoint-composites-handbook.md) <br/> |Provides in-depth guidance to help you learn how to create a no-code solution. <br/> |
| [No-code solutions using SharePoint Composites](create-sharepoint-no-code-solutions) <br/> |Provides links to many practical articles, walkthroughs, demos, virtual labs, and other formats that show how to create no-code solutions. <br/> |
| [Save, download, and upload a SharePoint site as a template](save-download-and-upload-a-sharepoint-site-as-a-template.md) <br/> |Explains how to create site templates without using code so you can easily deploy no-code solutions. <br/> |


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ If you’re using Visual Studio, the NuGet package manager dialog may look sligh

1. Go to **Tools** > **NuGet Package Manager** > **Manage NuGet Packages for Solution**, and search for **App for SharePoint**.

2. Install the package called **AppForSharePointWebToolkit**.
2. Install the package called **AppForSharePointOnlineWebToolkit**.

3. The toolkit installs the required helper classes for working with the SharePoint client-side object model (CSOM).

Expand Down
12 changes: 8 additions & 4 deletions docs/solution-guidance/multigeo-discovery.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,19 @@ clientContext.ExecuteQuery();

You can get the geo location information for a tenant by using Microsoft Graph. The following example returns a collection with one object per geo location.

> [!NOTE]
> The following code sample uses the `dataLocationCode` attribute on the `siteCollection` object. At the time of publishing, this property is only available in [Microsoft Graph beta endpoint](https://docs.microsoft.com/en-us/graph/api/resources/sitecollection?view=graph-rest-beta).


```
GET https://graph.microsoft.com/v1.0/sites?filter=siteCollection/root%20ne%20null&select=webUrl,siteCollection
GET https://graph.microsoft.com/beta/sites?filter=siteCollection/root%20ne%20null&select=webUrl,siteCollection
```

#### Example response for a Multi-Geo tenant

```json
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#sites",
"@odata.context": "https://graph.microsoft.com/beta/$metadata#sites",
"value": [
{
"webUrl": "https://contoso.sharepoint.com/",
Expand Down Expand Up @@ -92,14 +96,14 @@ The following example shows the results of a Microsoft Graph call to a single-ge
<!-- Not sure where the output for a Multi-Geo tenant is. Provide a link? -->

```
GET https://graph.microsoft.com/v1.0/sites?filter=siteCollection/root%20ne%20null&select=webUrl,siteCollection
GET https://graph.microsoft.com/beta/sites?filter=siteCollection/root%20ne%20null&select=webUrl,siteCollection
```

#### Example response for a single-geo tenant

```json
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#sites",
"@odata.context": "https://graph.microsoft.com/beta/$metadata#sites",
"value": [
{
"webUrl": "https://singlegeotest.sharepoint.com/",
Expand Down
1 change: 0 additions & 1 deletion docs/sp-add-ins/get-to-know-the-sharepoint-rest-service.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,4 +169,3 @@ To learn more about using the SharePoint REST service, use the following resourc
| [Social feed REST API reference for SharePoint](../general-development/social-feed-rest-api-reference-for-sharepoint.md) | SharePoint REST endpoints for feed-related tasks. |
| [Following people and content REST API reference for SharePoint](../general-development/following-people-and-content-rest-api-reference-for-sharepoint.md) | SharePoint REST endpoints for following people and content. |
| [Develop SharePoint Add-ins](develop-sharepoint-add-ins.md) | Find in-depth articles and resources to help you build advanced capabilities into your SharePoint Add-ins. |
| [REST API reference and samples](https://msdn.microsoft.com/library) | Comprehensive API reference for working with Microsoft tools, services, and technologies. Whether you're building apps, developing websites, or working with the cloud, you'll find detailed syntax, code snippets, and best practices. |
1 change: 0 additions & 1 deletion docs/sp-add-ins/sharepoint-add-ins.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,5 +145,4 @@ Ready to get started?

## See also

- [Microsoft Virtual Academy: Getting Started with SharePoint Add-Ins](https://mva.microsoft.com/en-US/training-courses/getting-started-with-sharepoint-addins-14053)
- [SharePoint glossary](../general-development/sharepoint-glossary.md)
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Open the host web (your developer test website) and verify that there is a calen
// Utility functions

function getQueryStringParameter(paramToRetrieve) {
var params = document.URL.split("?")[1].split("&amp;");
var params = document.URL.split("?")[1].split("&");
var strParams = "";
for (var i = 0; i < params.length; i = i + 1) {
var singleParam = params[i].split("=");
Expand Down
3 changes: 3 additions & 0 deletions docs/spfx/subscribe-to-list-notifications.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ localization_priority: Normal

Starting from SharePoint Framework v1.7.0, you can subscribe to changes to files stored in a SharePoint Document Library. This allows you to respond to changes when they happen, without having to regularly poll the contents of the library.

> [!NOTE]
> This feature was introduced as a developer preview feature. In order to use features in developer preview, ensure you use the `-plusbeta` version of the library (*see [this issue for reference](https://github.com/SharePoint/sp-dev-docs/issues/4306)*)

## Prerequisites

To use the SharePoint Framework list subscription capability, you first need to install the `@microsoft/sp-list-subscription` npm package. You can do it using the following code snippet:
Expand Down
4 changes: 2 additions & 2 deletions docs/transform/modernize-userinterface-site-pages-webparts.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ pageTransformator.Transform(pti);
These web parts are quite flexible in classic and therefore are replaced by more specific modern web parts. The replacement works as follows:

- Document library: [Library](https://support.office.com/en-us/article/use-the-document-library-web-part-a9dfecc3-2050-4528-9f00-2c5afc5731b0) web part
- List: [List]([List](https://support.office.com/en-us/article/use-the-list-web-part-ef0a1b80-f8b3-443d-b04a-1e76c70b5537)) web part
- List: [List](https://support.office.com/en-us/article/use-the-list-web-part-ef0a1b80-f8b3-443d-b04a-1e76c70b5537) web part
- Calendar: [Events](https://support.office.com/en-us/article/use-the-events-web-part-5fe4da93-5fa9-4695-b1ee-b0ae4c981909) web part
- Issue list: [List]([List](https://support.office.com/en-us/article/use-the-list-web-part-ef0a1b80-f8b3-443d-b04a-1e76c70b5537)) web part
- Issue list: [List](https://support.office.com/en-us/article/use-the-list-web-part-ef0a1b80-f8b3-443d-b04a-1e76c70b5537) web part
- Task list: [Text](https://support.office.com/en-us/article/add-text-and-tables-to-your-page-with-the-text-web-part-729c0aa1-bc0d-41e3-9cde-c60533f2c801) web part explaining this could not be mapped
- Discussion board: [Text](https://support.office.com/en-us/article/add-text-and-tables-to-your-page-with-the-text-web-part-729c0aa1-bc0d-41e3-9cde-c60533f2c801) web part explaining this could not be mapped
- Survey list: [Text](https://support.office.com/en-us/article/add-text-and-tables-to-your-page-with-the-text-web-part-729c0aa1-bc0d-41e3-9cde-c60533f2c801) web part explaining this could not be mapped
Expand Down