I need to check whether the logged in user is a administrator or non-admin user by using JavaScript in sharepoint designer or content editor webpart.

Can anybody suggest?

link|improve this question

67% accept rate
feedback

2 Answers

up vote 2 down vote accepted

You can use JQuery and SPServices to examine the group a logged in user belongs to, see my post here which explains the principle. In that case, it hides an element if a user belongs to a particular group.

link|improve this answer
feedback

You can use the HasRights javascript function defined in SharePoints core.js, you just have to pass the lower (limit) permission mask as well as the upper limit.

See the post about Checking Permissions with Javascript in Sharepoint 2007 and the list of permission masks. As you want to check whether it is an administrator you could try the ManageWeb permission mask: 0x0000000040000000


Edit: Another possibility is not using the HasRights function, but a SPSecurityTrimmedControl to simply set a global Javascript variable. An example you can find here: SharePoint: Run JavaScript based on user rights / permissions. This of course means extra markup (and doesn't work in a content editor webpart), but it does work.

link|improve this answer
Thanks for the links.. I want to verify the user in newform.aspx of a servey list. Can we use the HasRights method in that page?.. If yes then what are the parameters I have to pass ti it – Srikanth Jan 10 at 12:21
I don't have a SharePOint 2007 availalbe, so I can't test. As long as the core.js is loaded you can use HasRights. The parameters are explained in the links I posted. – moontear Jan 10 at 12:30
I just added the below script in my content editor webpart. No result. Can you check the code and let me know what needs to be done. I checked the HasRights is defined or not in core.jas, it is not defined in it. <script language="javascript" type="text/javascript"> if(HasRights(0x0, 0x0000000040000000)) { alert("You have admin rights."); } </script> – Srikanth Jan 10 at 13:17
This seems to always return true for me.. even when I don't have permission. I do see it in core.js though. – Kit Menke Jan 10 at 19:47
Not working as expected. Is there any other way? – Srikanth Jan 11 at 11:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.