98 |
99 | ${escape(footerMessage)}
100 |
101 |
`;
102 | }
103 | }
104 | }
105 |
106 | }
107 |
108 | private _onDispose(): void {
109 | console.log('[HelloWorldApplicationCustomizer._onDispose] Disposed custom top and bottom placeholders.');
110 | }
111 |
112 | }
113 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Microsoft SharePoint Framework Training Module - Extend the SharePoint user interface with SharePoint Framework extensions
2 |
3 | This module will introduce you to extending the SharePoint user interface with extensions.
4 |
5 | > This module is also published as a Microsoft Learn module: [Enable SharePoint Framework Web Part Configuration with Property Panes](https://learn.microsoft.com/training/modules/sharepoint-spfx-extensions)
6 |
7 | ## Lab - Extend the SharePoint user interface with SharePoint Framework extensions
8 |
9 | The lab for this module is available in multiple units within the associated Microsoft Learn module. Use the following links to jump to the specific unit. Each Microsoft Learn unit represents a different lab exercise & demo in the presentation.
10 |
11 | - [Exercise - Create an application customizer extension](https://learn.microsoft.com/training/modules/sharepoint-spfx-extensions/3-exercise-application-customizer)
12 |
13 | In this exercise, you'll create a SharePoint Framework (SPFx) application customizer extension.
14 |
15 | - [Exercise - Create a field customizer extension](https://learn.microsoft.com/training/modules/sharepoint-spfx-extensions/5-exercise-field-customizer)
16 |
17 | In this exercise, you'll create a SharePoint Framework (SPFx) field customizer extension that will display a colored bar in a column with a percentage of the bar filled depending on the value in the field.
18 |
19 | - [Exercise - Customize lists with command set extensions](https://learn.microsoft.com/training/modules/sharepoint-spfx-extensions/7-exercise-command-set-customizer)
20 |
21 | In this exercise, you'll create a SharePoint Framework (SPFx) command set extension that will display custom buttons in a SharePoint list.
22 |
23 | ## Demos
24 |
25 | - [Create an application customizer extension](./Demos/01-appcustomizer)
26 | - [Create a field customizer extension](./Demos/02-fieldcustomizer)
27 | - [Customize lists with command set extensions](./Demos/03-listviewcommandset)
28 |
29 | ## Watch the Module - Video
30 |
31 | This module has been recorded and is available in the SharePoint Development YouTube channel: [SharePoint Framework Training - Developing with the SharePoint Framework: Extend the SharePoint user interface with SharePoint Framework extensions](https://www.youtube.com/watch?v=85DlxhbIK9I&list=PLR9nK3mnD-OV-RPXQ3Lco845qoEy7VJoc)
32 |
33 | ## Contributors
34 |
35 | | Roles | Author(s) |
36 | | -------------------- | -------------------------------------------------------------------------------------------------------------- |
37 | | Lab Manuals / Slides | Andrew Connell (Microsoft MVP, [Voitanos](//github.com/voitanos)) [@andrewconnell](//github.com/andrewconnell) |
38 | | QA | Rob Windsor (Microsoft MVP) [@rob-windsor](//github.com/rob-windsor) |
39 | | Sponsor / Support | Vesa Juvonen (Microsoft) [@VesaJuvonen](//github.com/VesaJuvonen) |
40 |
41 | ## Version history
42 |
43 | | Version | Date | Comments |
44 | | ------- | ----------------- | -------------------------------------------------- |
45 | | 1.20 | December 13, 2024 | FY2025Q2 content refresh; update to SPFx v1.20.0 |
46 | | 1.19 | June 13, 2024 | FY2024Q4 content refresh; update to SPFx v1.19.0 |
47 | | 1.18 | May 5, 2023 | FY2023Q4 content refresh; update to SPFx v1.17.1 |
48 | | 1.17 | February 28, 2023 | FY2023Q3 content refresh; update to SPFx v1.16.1 |
49 | | 1.16 | December 5, 2022 | FY2023Q1 content refresh |
50 | | 1.15 | September 5, 2022 | FY2023Q1 content refresh; update for SPFx v1.15.2 |
51 | | 1.14 | May 2, 2022 | FY2022Q4 content refresh; update for SPFx v1.14 |
52 | | 1.13 | March 7, 2022 | FY2022Q3 content refresh; retire local workbench |
53 | | 1.12 | December 8, 2021 | FY2022Q2 content refresh; retire local workbench |
54 | | 1.11 | June 17, 2021 | FY2021Q4 content refresh |
55 | | 1.10 | March 6, 2021 | FY2021Q3 content refresh |
56 | | 1.9 | November 30, 2020 | FY2021Q2 content refresh |
57 | | 1.8 | August 31, 2020 | FY2021Q1 content refresh |
58 | | 1.7 | March 10, 2020 | FY2020Q3 content refresh & port module to MS Learn |
59 | | 1.6 | December 6, 2019 | FY2020Q2 content refresh |
60 | | 1.5 | September 2, 2019 | FY2020Q1 content refresh |
61 | | 1.4 | June 10, 2019 | FY2019Q4 content refresh |
62 | | 1.3 | March 6, 2019 | FY2019Q3 Content refresh |
63 | | 1.2 | January 17, 2019 | Slide updates, added screencast link to readme |
64 | | 1.1 | December 12, 2018 | Rewritten to use latest guidance |
65 | | 1.0 | ~February 2017 | Initial release |
66 |
67 | ## Disclaimer
68 |
69 | **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.**
70 |
71 | ## Contributing
72 |
73 | This project welcomes contributions and suggestions. Most contributions require you to agree to a
74 | Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
75 | the rights to use your contribution. For details, visit https://cla.microsoft.com.
76 |
77 | When you submit a pull request, a CLA-bot will automatically determine whether you need to provide
78 | a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions
79 | provided by the bot. You will only need to do this once across all repos using our CLA.
80 |
81 | This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
82 | For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
83 | contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
84 |
85 |