SharePoint 2010:通过 EcmaScript 设置 SPWeb.RequestAccessEmail
我有一个自定义功能区按钮,它创建一个具有预定义权限集的站点组。这一切都是使用 EcmaScript 完成的,到目前为止工作正常 100%。
我似乎无法使用 EcmaScript 在新网站组上初始化的唯一设置是与成员资格请求相关的设置(即 SPWeb.RequestAccessEmail)
有谁知道如何使用客户端对象模型设置此属性?
I have a custom ribbon button which creates a Site Group with a predefined set of permissions. This is all done using EcmaScript and so far is working 100%.
The only settings I can't seem to initialise on the new Site Group using EcmaScript are those relating to membership requests (i.e. SPWeb.RequestAccessEmail)
Does anyone know how to set this property using the client object model?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我没有在 SP.Web 属性 中看到它。以下是 Reflector 中 SPWeb.RequestAccessEmail setter 的定义:
我认为您无法使用 ECMAScript 对象模型复制此功能。
I do not see it listed in the SP.Web Properties. Here is the definition of the SPWeb.RequestAccessEmail setter from Reflector:
I don't think you will be able to duplicate this functionality using the ECMAScript object model.
您可以使用 PowerShell 将 SPWeb.RequestAccessEmail 设置为空字符串,这与将 SPWeb.RequestAccessEnabled 设置为 false 具有相同的效果。
You can use PowerShell to set the SPWeb.RequestAccessEmail to an empty string, which has the same effect as setting SPWeb.RequestAccessEnabled to false.