sp-dev-fx-webparts/samples/react-property-pane-navigation
guidozam e076a65aba Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
..
assets Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
config Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
src Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
teams Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
.eslintrc.js Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
.gitignore Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
.npmignore Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
.nvmrc Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
.yo-rc.json Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
README.md Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
gulpfile.js Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
package-lock.json Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
package.json Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00
tsconfig.json Added react-property-pane-navigation sample 2024-02-27 11:42:36 +01:00

README.md

Property Pane Navigation

Summary

This sample showcase how to handle the navigation between property pane pages.

Property pane navigation in action

Used SharePoint Framework Version

version

Applies to

Get your own free development tenant by subscribing to Microsoft 365 developer program

Solution

Solution Author(s)
react-property-pane-navigation Guido Zambarda - PiaSys.com - @iamguidozam

Version history

Version Date Comments
1.0 February 27, 2024 Initial release

Minimal path to awesome

  • Clone this repository (or download this solution as a .ZIP file then unzip it)
  • From your command line, change your current directory to the directory containing this sample (react-property-pane-navigation, located under samples)
  • in the command line run:
    • npm install
    • gulp serve

This sample can also be opened with VS Code Remote Development. Visit https://aka.ms/spfx-devcontainer for further instructions.

Features

This sample showcase how to handle the navigation between property pane pages using the web part getPropertyPaneConfiguration method like the following:

protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration {
	return {
		pages: [{
			header: { ... },
			groups: [ ... ],
		},
  		{
    			header: { ... },
			groups: [ ... ],
		},
		{
			header: { ... },
			groups: [ ... ],
		}],
	};
  }

Each element in the pages array represents a property pane page, the SharePoint Framework will enable navigation and will render the pages in the order they are defined in the array. The first page in the array will be the first page to be rendered, and so on.

References

Disclaimer

THIS CODE IS PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.