我正在为在线共享点创建一个提供程序托管的加载项,我想创建按钮,或者如果可能的话,最好在命令栏中创建一个下拉按钮,如下所示:
也许这个问题已经被问过很多次了,但我找不到任何明确的答案。
到目前为止,我可以在使用 Visual Studio 创建自定义操作的项目的上下文菜单中创建按钮。
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<CustomAction Id="2bd189ad-3561-405e-815e-39f1a7fa1548.MenuItemCustomAction2"
RegistrationType="List"
RegistrationId="101"
Location="EditControlBlock"
Sequence="10001"
Title="Invoke 'MenuItemCustomAction2' action">
<!--
Update the Url below to the page you want the custom action to use.
Start the URL with the token ~remoteAppUrl if the page is in the
associated web project, use ~appWebUrl if page is in the app project.
-->
<UrlAction Url="~remoteAppUrl/WebForm1.aspx?{StandardTokens}&SPListItemId={ItemId}&SPListId={ListId}" />
</CustomAction>
</Elements>
但我找不到类似的命令栏。我没有使用 sfpx,因为据我了解,它仅适用于共享点托管应用程序。
感谢您的帮助。