Skip to content

Commit 8c7faf8

Browse files
authored
Updated article with suggested changes
1 parent a7b6431 commit 8c7faf8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/declarative-customization/view-formatting.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Use view formatting to customize SharePoint
33
description: Customize how views in SharePoint lists and libraries are displayed by constructing a JSON object that describes the elements that are displayed in a list view, and the styles to be applied to those elements.
4-
ms.date: 03/22/2021
4+
ms.date: 03/30/2021
55
localization_priority: Priority
66
---
77

@@ -261,7 +261,7 @@ In the example below we have list with group headers formatted with group aggreg
261261

262262
![Employee list grouped by City with formatted group header with Aggregates summary](../images/employee-formatted-group-header-aggregate-list-layout.png)
263263

264-
In this example the `hideFooter` for `groupProps` is set to _true_ - to hide the group footer and the `@aggregates` array is used to display a summary in the group header.
264+
In this example the `hideFooter` for `groupProps` is set to `true` - to hide the group footer and the `@aggregates` array is used to display a summary in the group header.
265265

266266
```JSON
267267
{
@@ -814,13 +814,13 @@ Optional element. Specifies a CSS class(es) that is applied to the entire row. S
814814

815815
### hideSelection
816816

817-
Optional element. Specifies whether the ability to select rows in the view is disabled or not. _false_ is the default behavior inside a list view (meaning selection is visible and enabled). _true_ means that users will not be able to select list items. Valid in 'List', 'Compact List' and 'Gallery' layouts.
817+
Optional element. Specifies whether the ability to select rows in the view is disabled or not. `false` is the default behavior inside a list view (meaning selection is visible and enabled). `true` means that users will not be able to select list items. Valid in 'List', 'Compact List' and 'Gallery' layouts.
818818

819819
For list & compact list layout, `hideSelection` only takes effect when there's a `rowFormatter` element specified. If no `rowFormatter` is specified, then `hideSelection` is ignored.
820820

821821
### hideColumnHeader
822822

823-
Optional element. Specifies whether the column headers in the view are hidden or not. _false_ is the default behavior inside a list view (meaning column headers will be visible). _true_ means that the view will not display column headers. Only valid for 'List' and 'Compact List' layouts.
823+
Optional element. Specifies whether the column headers in the view are hidden or not. `false` is the default behavior inside a list view (meaning column headers will be visible). `true` means that the view will not display column headers. Only valid for 'List' and 'Compact List' layouts.
824824

825825
### height
826826

@@ -848,7 +848,7 @@ JSON object that defines the format for group and list footer. The schema of thi
848848

849849
### hideFooter
850850

851-
Optional element. Specifies whether the list footers or the group footers in the view are hidden or not. _false_ is the default behavior (meaning footer is visible). _true_ means that view will not display footers. Valid in 'List' and 'Compact List' layouts.
851+
Optional element. Specifies whether the list footers or the group footers in the view are hidden or not. `false` is the default behavior (meaning footer is visible). `true` means that view will not display footers. Valid in 'List' and 'Compact List' layouts.
852852

853853
For list & compact list layout, `hideFooter` overrides the `footerFormatter`, if present.
854854

0 commit comments

Comments
 (0)