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/docs/cmd/spo/list/list-view-add.mdx
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,8 +63,8 @@ m365 spo list view add [options]
63
63
`--default`
64
64
: View will be set as default view, if specified.
65
65
66
-
`--paged`
67
-
: View supports paging, if specified (recommended to use this).
66
+
`--paged [paged]`
67
+
: View supports paging. Valid values are `true`, `false`. Defaults to `true`.
68
68
69
69
`--rowLimit [rowLimit]`
70
70
: Sets the number of items to display for the view. Default value is 30.
@@ -76,7 +76,7 @@ m365 spo list view add [options]
76
76
77
77
:::tip
78
78
79
-
We recommend using the `paged` option. When specified, the view supports displaying more items page by page (default behavior). When not specified, the `rowLimit` is absolute, and there is no link to see more items.
79
+
We recommend using the `paged` option. Paging is enabled by default: the view shows items page by page, up to the specified `rowLimit` per page. To disable paging, set `paged` to `false`; in a non-paged view, the `rowLimit` is absolute and there is no link to see more items.
80
80
81
81
:::
82
82
@@ -85,43 +85,43 @@ We recommend using the `paged` option. When specified, the view supports display
85
85
Add a list view called to a list with specific title.
86
86
87
87
```sh
88
-
m365 spo list view add --webUrl https://contoso.sharepoint.com/sites/Sales --listTitle "Customers" --title "All customers" --fields "LinkTitle,Country,Sector,Country,Address,Contact" --paged
88
+
m365 spo list view add --webUrl https://contoso.sharepoint.com/sites/Sales --listTitle "Customers" --title "All customers" --fields "LinkTitle,Country,Sector,Country,Address,Contact"
89
89
```
90
90
91
91
Add a gallery view as default view to a list with a specific URL.
92
92
93
93
```sh
94
-
m365 spo list view add --webUrl https://contoso.sharepoint.com/sites/Sales --listUrl "/Lists/Customers" --title "All customers" --type gallery --fields "LinkTitle,Country,Sector,Country,Address,Contact" --paged --default
94
+
m365 spo list view add --webUrl https://contoso.sharepoint.com/sites/Sales --listUrl "/Lists/Customers" --title "All customers" --type gallery --fields "LinkTitle,Country,Sector,Country,Address,Contact" --default
Copy file name to clipboardExpand all lines: docs/docs/v11-upgrade-guidance.mdx
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,15 @@ The [spo homesite set](./cmd/spo/homesite/homesite-set.mdx) command has been upd
16
16
-**For adding new home sites**: Use the new [spo homesite add](./cmd/spo/homesite/homesite-add.mdx) command instead
17
17
-**For updating existing home sites**: Continue using [spo homesite set](./cmd/spo/homesite/homesite-set.mdx) as before with required option `siteUrl`.
18
18
19
+
### `spo list view add` default paged option changed
20
+
21
+
The [spo list view add](./cmd/spo/list/list-view-add.mdx) command has been updated to change the default value of the `paged` option from `false` to `true`. This change reflects the common usage pattern where most views allow paging and fetch new items while scrolling down.
22
+
23
+
#### What action do I need to take?
24
+
25
+
-**If you want paged views (most common)**: No action required as this is now the default behavior.
26
+
-**If you want static views**: Explicitly specify `--paged false` when creating views that should not fetch new items while scrolling.
27
+
19
28
## Teams
20
29
21
30
### Ensure list output for `teams report` commands
0 commit comments