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/transform/modernize-userinterface-lists-and-libraries.md
+149-1Lines changed: 149 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ You can't yet transform all lists and libraries to the modern experience because
15
15
16
16
- Certain types of lists and libraries can be shown in modern, but are blocked due to an incompatible configuration or customization; you can take action here.
17
17
18
-
## List templates available in the modern user interface
18
+
## List templates available in the modern user interface
19
19
20
20
Following are the most commonly used list template types that SharePoint can currently render in a modern user interface (as of March 2018):
21
21
@@ -99,6 +99,154 @@ list.Update();
99
99
context.ExecuteQuery();
100
100
```
101
101
102
+
### Investigate and fix the "MultipleWebParts" issue
103
+
104
+
When the used list view page (e.g. AllItems.aspx) holds more than one web part the list will never show up using the modern user interface. You can manually check these cases by going to the list and appending `?ToolPaneView=2&pagemode=edit` to the list URL. This will bring the page in edit mode and should reveal the extra web parts and allow you to remove those. If you want to programmatically do the same then below code snippet is a good starting basis. This snippet depends on the PnP sites core library which you can install to your Visual Studio project via the [SharePointPnPCoreOnline nuget package](https://www.nuget.org/packages/SharePointPnPCoreOnline/).
0 commit comments