문제

I am migrating MOSS 2007 site to Sahrepoint 2010 without UI upgrade. In all document libraries I am able to view Action menu. How do I remove it from all document libraries. Also In one document library users have read access and when they open in explorer view, they are able to delete document. How do I solve this

Please help.

도움이 되었습니까?

해결책

I used below javascript in allitems.aspx to hide the action menu:

<script type="text/javascript" src="/Documents/jquery.hiding-1.4.2.min.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function() {
    var link = $('a[id$="ListActionsMenu"]').filter(':contains("Actions")');
    link.parent().hide();
});
</script>   
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top