我在功能区中有自定义操作,只有当前用户有权编辑项目时才需要启用该按钮(Contribute角色)。我有一个PageComponent告诉UI是否可以处理命令,但我可以弄清楚如何在javascript中检查项目的用户权限。
这是在我的PageComponent:
中 canHandleCommand: function (commandId) {
switch (commandId) {
case 'Command1':
var ids = getSelectedIds(); // gets an array of selected ids
var selectionChanged = false;
if (ids.length != this.previousIds.length) {
selectionChanged = true;
} else {
for (var index in ids) {
if (ids[index] != this.previousIds[index]) {
selectionChanged = true;
}
}
}
if (selectionChanged) {
this.enabledStatusChecked = false;
}
this.previousIds = ids;
if (!this.enabledStatusChecked) {
this.checkIsEnabled(ids);
}
return this.isEnabled;
}
return false;
},
checkIsEnabled: function (ids) {
this.enabledStatusChecked = true;
this.isEnabled = false;
if (ids.length != 1) {
return;
}
var id = ids[0];
var context = SP.ClientContext.get_current();
var web = context.get_web();
var list = web.get_lists().getById(SP.ListOperation.Selection.getSelectedList());
var item = list.getItemById(id);
context.load(item);
context.executeQueryAsync(Function.createDelegate(this, function () {
var contentTypeId = item.get_item('ContentTypeId').toString();
if (!contentTypeId.lastIndexOf(Constants.InternalNormContentTypeId, 0)) {
this.isEnabled = true;
// !! need to check permissions here !!
}
RefreshCommandUI();
}), Function.createDelegate(this, function () {
RefreshCommandUI();
}));
},
此代码仅在选择了1个项目并且具有指定的内容类型时才启用该按钮。有没有人知道如何通过javascript检查权限?
答案 0 :(得分:1)
从我的角度来看。你有两种方法,第一个在html / master页面中添加标签: http://buyevich.blogspot.com/2010/08/hide-ribbon-from-visitorsanonimus-users_31.html 或创建asp控件并将其带到页面: http://dicemastersharespoint.blogspot.com/2011/02/hiding-buttonscontrols-on-sharepoint.html
写回您的解决方案是否可行。
最好的问候
马丁