1
我需要根據當前用戶組隱藏頁面元素。如何在SharePoint 2013中使用客戶端對象模型獲取當前用戶組?
我沒有找到適用於SharePoint 2013的任何解決方案來執行此操作。
任何人都可以幫助我嗎?
我用SPServices試過這個解決方案,但沒有工作。
<script type="text/javascript">
$(document).ready(function(){
$().SPServices({
operation: "GetGroupCollectionFromUser",
userLoginName: $().SPServices.SPGetCurrentUser(),
async: false,
completefunc: function(xData, Status) {
if($(xData.responseXML).find("Group[Name='Members']").length == 1)
{
alert('Member');
$("#ribbonBox").show();
$(".ms-siteactions-root").show();
$("#btnGestor").show();
}
else
{
alert('non-Member');
$("#ribbonBox").hide();
$(".ms-siteactions-root").hide();
$("#btnGestor").hide();
}
}
});
});
</script>