Hi I'm pretty new to SharePoint and javascript. I am trying to check if the content database is read-only, and if it is then preform a function
eg.
if (!site.WebApplication.ContentDatabases[0].IsReadOnly)
{
if (!site.ReadOnly)
{
alert("readonly");
}
}
else
{
alert("not read only");
}
I can't get this to work.Any help would be great.
Tell me more
×
SharePoint Stack Exchange is a question and answer site for
SharePoint enthusiasts. It's 100% free, no registration required.
|
|
|||||||||||
|
|
Just a thought, but your JavaScript might not have permission to see the WebApplication or the ContentDatabases. Try adding alerts, something like Site.Title, Site.WebApplication.Title, Site.WebApplication.ContentDatabases.Count, etc. to see how far you can go. As an aside, what exactly are you trying to do? I haven't seen someone trying to get to the Content Database through JavaScript before. If the current user can't see the Content Database, then they can't see the site they are currently on, either. Or are you trying to look at a site other than the one you are on?? |
|||
|
|