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
{XmlDefinition}|XmlDefinition attribute of the XSLTListViewWebPart
215
+
#### Output parameters
216
+
217
+
Name|Description
218
+
:-----|:----------
219
+
{HideToolBar}|Boolean indicating if the toolbar should be hidden
180
220
### ListDetectUsedView
181
221
182
222
**Description:** Detects the list view id that was used by the webpart by mapping the web part xmldefinition to the list views. If no view found the list default view id is returned.
@@ -211,6 +251,22 @@ Name|Description
211
251
:-----|:----------
212
252
{ImageListId}|Id of the list holding the file
213
253
{ImageUniqueId}|UniqueId of the file
254
+
### ReturnCrossSiteRelativePath
255
+
256
+
**Description:** Transforms the incoming path into a server relative path. If the page is located on another page the asset is transferred and url updated. Any failures keep to the original value.
{ContentLink}|Server relative url to the file to load
332
+
#### Output parameters
333
+
334
+
Name|Description
335
+
:-----|:----------
336
+
{FileContents}|Text content of the file. Return empty string if file was not found
337
+
### ContentBySearchToHighlightedContentProperties
338
+
339
+
**Description:** Maps content by search web part data into a properties collection and supporting serverProcessedContent nodes for the content rollup (= Highlighted Content) web part
{JsonProperties}|Properties collection for the contentrollup (= Highlighted Content) web part
356
+
{SearchablePlainTexts}|SearchablePlainTexts nodes to be added in the serverProcessedContent node
357
+
{Links}|Links nodes to be added in the serverProcessedContent node
358
+
{ImageSources}|ImageSources nodes to be added in the serverProcessedContent node
249
359
### ContentByQueryToHighlightedContentProperties
250
360
251
-
**Description:** Maps content by query web part data into a properties collection for the contentrollup (= Highlighted Content) web part
361
+
**Description:** Maps content by query web part data into a properties collection and supporting serverProcessedContent nodes for the content rollup (= Highlighted Content) web part
{JsonProperties}|Properties collection for the quicklinks web part
432
+
{SearchablePlainTexts}|SearchablePlainTexts nodes to be added in the serverProcessedContent node
433
+
{Links}|Links nodes to be added in the serverProcessedContent node
434
+
{ImageSources}|ImageSources nodes to be added in the serverProcessedContent node
435
+
### LookupPerson
436
+
437
+
**Description:** Looks up a person from the UserInfo list and returns the needed details
438
+
439
+
**Example:**`LookupPerson({ContactLoginName})`
440
+
441
+
#### Input parameters
442
+
443
+
Name|Description
444
+
:-----|:----------
445
+
{ContactLoginName}|User account to lookup (in i:0#.f|membership|[email protected] format)
446
+
#### Output parameters
447
+
448
+
Name|Description
449
+
:-----|:----------
450
+
{PersonName}|Name of the user
451
+
{PersonEmail}|User's email
452
+
{PersonUPN}|UPN of the user
453
+
{PersonRole}|Role of the user
454
+
{PersonDepartment}|User's department
455
+
{PersonPhone}|Phone number of the user
456
+
{PersonSip}|SIP address of the user
287
457
## Selectors
288
458
### TextSelector
289
459
@@ -344,21 +514,29 @@ WebPage|The embedded content is a page
344
514
ServerFolderOrFile|The embedded content points to a server folder or file
345
515
### ContentEmbedSelectorContentLink
346
516
347
-
**Description:**If ContentLink is set (content editor) then return Link, otherwise return Content.
517
+
**Description:**Content editor can be transformed in various ways depending on whether a link was used, what file type was used, if script is used or not...
Copy file name to clipboardExpand all lines: docs/transform/modernize-userinterface-site-pages-configuration.md
+36-1Lines changed: 36 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Options to control the page transformation process
3
3
description: Explains how to configure the page transformation process
4
-
ms.date: 01/30/2019
4
+
ms.date: 03/06/2019
5
5
ms.prod: sharepoint
6
6
localization_priority: Normal
7
7
---
@@ -140,6 +140,41 @@ PageTransformationInformation pti = new PageTransformationInformation(page)
140
140
};
141
141
```
142
142
143
+
## RemoveEmptySectionsAndColumns option (as of March 2019 release)
144
+
145
+
Type | Default value if not specified
146
+
-----|----
147
+
Bool | true
148
+
149
+
The default behavior is to remove all empty sections and columns (e.g. you transform from a 3 column layout and only have one web part in the middle column) as that will result in better use of the screen real estate, if you don't want this then set this option to false
0 commit comments