Forum Discussion
Adding new (SPFX based) ecb Menu Item with showProperties function
- Apr 23, 2021
powerCorner You can achieve similar functionality using JSON formatting with less efforts. Follow below steps:
1. Create a new single line of text column in document library
2. Format the newly created column using below JSON:
{ "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json", "elmType": "button", "txtContent": "Open properties", "customRowAction": { "action": "editProps" } }3. Hide this column from library forms (make it Hidden from advanced content type management settings).
Output:
On click of this button, file properties pane will be open at the right side. Optionally, you can apply styling to the button as per your requirements. for that check official documentation of JSON formatting.
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
powerCorner You can achieve similar functionality using JSON formatting with less efforts. Follow below steps:
1. Create a new single line of text column in document library
2. Format the newly created column using below JSON:
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "button",
"txtContent": "Open properties",
"customRowAction": {
"action": "editProps"
}
}
3. Hide this column from library forms (make it Hidden from advanced content type management settings).
Output:
On click of this button, file properties pane will be open at the right side. Optionally, you can apply styling to the button as per your requirements. for that check official documentation of JSON formatting.
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
- powerCornerApr 25, 2021Copper ContributorThank you very much ganeshsanap!
This was exactly what I was looking for!!! Man that is so much easiert then doing stuff with the ECB menu and SPfx 🙂
With regards,
Kevin