is there way to add list item when user right click of a file using sharepoint add-in or extension as following image
Asked
Active
Viewed 123 times
1

DevÁsith
- 1,072
- 12
- 38
1 Answers
0
What you're looking for is a list command set extension in a SharePoint Framework solution. Check the documentation.
If you want your extension to appear in the right click menu make sure you set the Location
attribute to ClientSideExtension.ListViewCommandSet.ContextMenu
(or ClientSideExtension.ListViewCommandSet
for both the menu and the bar) in the elements.xml
file.

baywet
- 4,377
- 4
- 20
- 49
-
is that same as Custom action(MenuItem) in sharepoint add-ins ? – DevÁsith Oct 05 '18 at 09:44
-
1It's the equivalent for the modern experience – baywet Oct 05 '18 at 11:03