Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update folder explorer docs #835

Merged
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/documentation/docs/controls/FolderExplorer.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ The `FolderExplorer` control can be configured with the following properties:
| initialBreadcrumbItems | IBreadcrumbItem | no | Additional items to be added to the beginning of the breadcrumb. |
| hiddenFilterBox | boolean | no | Hide the filter box |
| onSelect | (folder: IFolder): void | no | Callback function called after a folder is selected. |
| orderby | string | no | The name of the field on which to sort. Default: Name. For list item properties, use ListItemAllFields/Title, ListItemAllFields/Created, etc |
| orderby | string | no | The name of the folder field on which to sort. Name will be used as default. Other examples: Name, TimeCreated, TimeLastModified |
| orderAscending | boolean | no | If set to true, results will be sorted in ascending order. Otherwise, descending will be used as default |

![](https://telemetry.sharepointpnp.com/sp-dev-fx-controls-react/wiki/controls/FolderExplorer)
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export interface IFolderExplorerProps {
hiddenFilterBox?: boolean;

/**
* The name of the field on which to sort. Default: Name. For list item properties, use ListItemAllFields/Title, ListItemAllFields/Created, etc
* The name of the folder field on which to sort. Name will be used as default. Other examples: Name, TimeCreated, TimeLastModified
*/
orderby?: string;

Expand Down