Is there a way to hide: "Edit Item" / "Manage Permissions" / etc in a Sharepoint List?
I want to avoid to modify CORE.JS, maybe a JQuery hack/tweak?
Ive researching but I see nothing clear.
Asked
Active
Viewed 915 times
0

hyeomans
- 4,522
- 5
- 24
- 29
-
1You only see these items if you have relevant permissions for the said list. Why don't you just turn down the permissions for the users that you don't want to have this functionality? – Simon Fox Oct 08 '09 at 23:33
2 Answers
5
You only see these items if you have relevant permissions for the said list. Why don't you just turn down the permissions for the users that you don't want to have this functionality?

Simon Fox
- 10,409
- 7
- 60
- 81
-
set permissions before attempting JS hacks, its much more maintainable and scalable. – DJ. Oct 09 '09 at 12:30
1
There is an article on MSDN to do it javascript's way.

Alex Angas
- 59,219
- 41
- 137
- 210

Janis Veinbergs
- 6,907
- 5
- 48
- 78
-
And they recommend modifying one of the files in the "12 hive"!! What are MS doing? – Alex Angas Oct 09 '09 at 08:37
-
@Alex, not quite that. You copy&paste original file, make modifications, create custom masterpage, or better use the same masterpage, but use DelegateControl "AdditionalPageHead" to include your custom js. And then use a feature to activate/deactivate custom javascript. Yippe : http://weblogs.asp.net/jan/archive/2008/11/20/sharepoint-2007-and-jquery-1.aspx – Janis Veinbergs Oct 09 '09 at 09:57