Tag Info

Hot answers tagged

6

Yes, sitemanager.aspx looks more SP2007-like, but you cannot specify the default master page because it does not use a master page at all. If you look at C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\SiteManager.aspx you will see no master page in the Page directive and no ContentPlaceHolders on the page.


4

You can always generate new GUIDs using Online GUID generator or using Visual Studio This is how you can provision your field and use it in a Content Type using FieldId and FieldRef. Follow the sample elements.xml below: <?xml version="1.0" encoding="utf-8"?> <Elements xmlns="http://schemas.microsoft.com/sharepoint/"> <Field ...


3

Personally, If you are not strapped for space, I would both back up content and configuration as well as using your regular backups. Technically, you do not need to back up the content as well as have a backup of the sql instance, however they are really two different types of backups. One allows you to restore the site as a whole with everything on it to ...


3

If you have your own webpart it may be possible but you have to do all the plumbing your self. The standard webpart framework does not provide any thing for nesting webparts. Otherwise you could try using Easy Tabs to add tabs to SharePoint, these tabs allow (multiple) webparts.


3

There are two reasons for what you are seeing: 1) SharePoint reports on on how much data/content it believes is in the content database (i.e. it doesn't know that the BLOBs have been remoted), which I think is a good thing. SharePoint being unaware of whether the BLOB is in the content db or not is one of many great things about RBS. 2) The "extra" space ...


2

DISCLAIMER : Have never tried this so not sure whether this is the best solution. You should be able to copy the contents by a database backup and restore it into the new SharePoint 2010 farm. Create a new web application with the new attached db. You would also require to upgrade the db using powershell to maintain the same version as that of the existing ...


2

This is the default behavior. The "Add new item" link uses the default content type and does not display a dropdown list to change that value. Rather than including the Content Type dropdown in the NewForm.aspx, instead you could edit the AllItems.aspx page to include your additional links at the bottom of your page. You'll need to do this in SharePoint ...


2

You cannot change a template once you have created the site. You can either make the desired changes to the existing site (new lists, libraries, page configuration) or you can create a new site with the desired template and then move existing content. If it is document content you can use the Explorer view to cut and past documents or use the send to ...


2

There isn't a way to prevent the ContentPlaceHolder from being 'overriden'. If you have control over the html of the masterpage, you could can: Move the defaults contents outside the content placeholder (if you are sure that the content should always be present on the page). Then put a <div style="display:none">..</div> around the placeholder. ...


1

You cannot remove Content Type as long as Data Still relies on it. SharePoint wont' allow you. E.g. Even after deleting the Item (or the whole list for that matter), unless you empty the Recycle-Bin you won't be able to Delete the content type. Basically SharePoint uses a Dependencychecker to ensure you are not doing it. If you delete it by hand from ...


1

You should remove the column and update your content type as well. You can do that in two way at least. By a feature activation: string contentTypeName = "MyCT"; try { var contentType = site.RootWeb.ContentTypes[contentTypeName]; if (contentType == null) return; var fields = site.RootWeb.Fields; if ...


1

SharePoint will continue to work with large databases if not controlled, they will not fail when they exceed the recommended limits. You will however start to see performance degradation. You can limit sizes in SQL by specifying the maximum size a database can grow to. in fact it is a best practice to pre-size your databases at the maximum limit (if it is ...


1

“We strongly recommended limiting the size of content databases to 200 GB to help ensure system performance. “Content database sizes up to 1 terabyte are supported only for large, single-site repositories and archives with non-collaborative I/O and usage patterns, such as Records Centers. Larger database sizes are supported for these ...


1

Your xslt should be something like: <xsl:variable name="ImageURL" xmlns:content="http://namespaceurl" select="substring-before(substring-after(content:encoded, 'src=&quot;'), '&quot;')" /> <img alt="" src="{$ImageURL}" width="75" height="49" /> Where http://namespaceurl matches the namespace "url" of content from the input To find ...


1

how about trying this code? Microsoft.SharePoint.WebControls.SaveButton.SaveItem(SPContext.Current, false, "Time Saved = " + DateTime.Now); http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.webcontrols.savebutton.saveitem.aspx also have the update at the bottom not top of the code stack, you could try somthing like this ;) : ...


1

Yes, all the Content Deployment jobs can be run at same time (in parallel), but you need to make sure that you don't start another Content Deployment job if previous one is already in "Preparing" mode. I had faced some problems in the past while running different Content Deployment Jobs in parallel especially when Content Deployment jobs are configured with ...


1

I know Microsoft has a fully populated Constoso SharePoint site with documents, list entries subsites, user profiles, etc., though I'm not certain where that is available. I found this link while searching for it which looks promising but I would not swear this is it.


1

Follow the website structure with site collections and sites depending on the security levels you require. Work out what needs to be a managed path and what needs to be a site. Look for the closest OOTB webpart for functionality if not look on codeplex most already exist. Design your security groups with the site structure in mind, and think about a ...


1

Follow these steps; Place the standard CQWP onto the page. Export the web part (in the web part pane, click edit -> Export and save the file to your PC) Open the webpart you just exported in Notepad or some other plain text editor Find the property Embed your CAML query into a CDATA section, the above query will now look like this; < ![CDATA[ ...


1

I suspect this just an problem with your client machine. Try another PC if you have access, and also get someone else to try. This should indicate whether it's a user problem, machine problem or server problem. Otherwise, go through the standard steps... (check after each step) Clear IE cache Reboot Clear user profile Reinstall Office Reinstall IE ...



Only top voted, non community-wiki answers of a minimum length are eligible