0

It is possible to set permissions on document library without using the content explorer?

I can set permissions for each specific file or folder, but to change the permissions of a document library I only finded a way through the content explorer...

4

1 回答 1

1

如果要将其作为“按钮”显示在工具栏上,请将 SetPermission 操作作为 ActionLink 添加到文档库工具栏 (/Root/System/SystemPlugins/ListView/ViewFrame.ascx) 的 .ascx 视图中

将其放入 .ascx 中的 ToolbarItemGroup 控件中

<sn:ActionLinkButton ID="SetPermissionsActionLinkButton" runat="server" ActionName="SetPermissions" ContextInfoID="myContext" Text="<%$ Resources: Action, SetPermissions %>" />

如果在工具栏上的“操作”下拉列表中列出了“设置权限”操作就足够了,请将“ListActions”添加到 /Root/(apps)/GenericContent/SetPermissions 的场景字段中。

在此处输入图像描述

于 2017-02-27T11:48:46.933 回答