Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ Create a SharePoint custom list Feedbacks in the SPO site where this application
| Employee_Name | Text |
| Comment | Multi-line Text |

> Note: Enable Ratings column for the list.

> **Optional:** Unhide the default column `Created` to capture the submitted date.

## Contributors🧑‍💻
Expand All @@ -59,6 +61,7 @@ Create a SharePoint custom list Feedbacks in the SPO site where this application
| ------- | ---------------- | --------------- |
| 1.0 | July 02, 2023 | Initial release |
| 1.1 | April 10, 2025 | Version upgrade to SPFx 1.20.0 & other improvements |
| 1.2 | May 23, 2025 | Implement Ratings & change position of widget based on property configuration |

## Minimal Path to Awesome⚡

Expand All @@ -71,11 +74,10 @@ Create a SharePoint custom list Feedbacks in the SPO site where this application
## Debug URL for Testing

```javascript
?debugManifestsFile=https%3A%2F%2Flocalhost%3A4321%2Ftemp%2Fmanifests.js&loadSPFX=true&customActions=%7B%2233ce42af-1748-4989-ab97-a8d9f782b886%22%3A%7B%22location%22%3A%22ClientSideExtension.ApplicationCustomizer%22%2C%22properties%22%3A%7B%22testMessage%22%3A%22Test+message%22%7D%7D%7D
?debugManifestsFile=https%3A%2F%2Flocalhost%3A4321%2Ftemp%2Fmanifests.js&loadSPFX=true&customActions=%7B"33ce42af-1748-4989-ab97-a8d9f782b886"%3A%7B"location"%3A"ClientSideExtension.ApplicationCustomizer"%2C"properties"%3A%7B"title"%3A"Submit+your+feedbacks+%26+ideas"%2C"position"%3A"rightBottom"%7D%7D%7D
```

## Deploy Package Solution 🚀

## Deploy Package Solution
- Ensure that you are at the solution folder
- in the command-line run:
- `gulp build --ship`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"An SPFx Application Customizer Extension placed in the bottom placeholder which allows users to input their feedbacks without scrolling down to the end of the page."
],
"creationDateTime": "2023-07-02",
"updateDateTime": "2023-07-02",
"updateDateTime": "2025-05-25",
"products": [
"SharePoint"
],
Expand All @@ -20,7 +20,7 @@
},
{
"key": "SPFX-VERSION",
"value": "1.16.1"
"value": "1.20.2"
}
],
"tags": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"solution": {
"name": "feedback-customizer-client-side-solution",
"id": "c66c6f38-3920-41b8-849d-3383aa467780",
"version": "1.1.0.0",
"version": "1.2.0.0",
"includeClientSideAssets": true,
"skipFeatureDeployment": true,
"isDomainIsolated": false,
Expand All @@ -30,7 +30,7 @@
"title": "Application Extension - Deployment of custom action",
"description": "Deploys a custom action with ClientSideComponentId association",
"id": "062f8d82-ce8f-4035-b0ce-6cba7de74232",
"version": "1.1.0.0",
"version": "1.2.0.0",
"assets": {
"elementManifests": ["elements.xml", "ClientSideInstance.xml"]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,25 @@
"https": true,
"serveConfigurations": {
"default": {
"pageUrl": "https://m365x44410739.sharepoint.com/sites/PRIDE-EmployeeResourceGroup",
"pageUrl": "https://spl7c.sharepoint.com/sites/WelcomeWorks_OG",
"customActions": {
"33ce42af-1748-4989-ab97-a8d9f782b886": {
"location": "ClientSideExtension.ApplicationCustomizer",
"properties": {
"testMessage": "Test message"
"title": "Submit your feedbacks & ideas",
"position": "rightBottom"
}
}
}
},
"feedback": {
"pageUrl": "https://m365x44410739.sharepoint.com/sites/PRIDE-EmployeeResourceGroup",
"pageUrl": "https://spl7c.sharepoint.com/sites/WelcomeWorks_OG",
"customActions": {
"33ce42af-1748-4989-ab97-a8d9f782b886": {
"location": "ClientSideExtension.ApplicationCustomizer",
"properties": {
"testMessage": "Test message"
"title": "Submit your feedbacks & ideas",
"position": "rightBottom"
}
}
}
Expand Down
Loading
Loading