SharePoint Foundation is the platform for all products in the SharePoint family. It contains all of the core functionality and architecture drawn on by the commercial versions of the package, but is free to download

learn more… | top users | synonyms (1)

0
votes
2answers
18 views

Trouble using PowerShell cmdlet

I try and run this Script using Powershell ISC run as Admin: #Site URL $web = Get-SPWeb "http://cgprojects/sites/tfs"; $web.AllowUnsafeUpdates = $true; #List Name $list = ...
0
votes
0answers
19 views

JavaScript error when adding user to Sharepoint Group — SP Foundation 2010

We are getting a JavaScript error when trying to open the peoplepicker popover from Site Actions --> Site Permissions --> Site Visitors --> Click New The error is sp.ui.dialog.js ...
0
votes
1answer
11 views

ETA Field Validation

I have a list which has an ETA data/time control. I'm trying to figure out a way to prevent users from entering a date which is before the current date/time?
1
vote
2answers
35 views

Update list Item returns ErrorCode 0x80004005

I have a sharepoint list with around 75 columns and there are about 1800 records. I am trying to update an item using Update List Item Web Service but it fails showing errorcode : 0x80004005 and ...
0
votes
1answer
18 views

Append List Item Files

I'm using a list which allows users to attach files to an item but removes the delete option using javascript. I need to find out if theres a way I can allow users to continue uploading documents to ...
1
vote
0answers
17 views

Having issues looking at all old versions

I've been trying to look at older versions of a file but keep getting this error? Any idea what it's happening? I've looked at the source of the document within Excel and it's looking for a copy ...
0
votes
0answers
8 views

Retrieve raw XML from external content type (WCF service) - Sharepoint Foundation 2013

I would like to use a "External List" or anything similar, to be able to retrieve the XML from an "External Content Type" (which is from a WCF service) and I will customize how the data is displayed ...
0
votes
0answers
23 views

How to recover XsltListViewWebPart?

Trying to view any of the worfklow on my site leads to this new error: MetadataNavigationContext Page_InitComplete: No XsltListViewWebPart was found on this ...
4
votes
3answers
78 views

Event Receiver called multiple times

I attached an event handler for ItemAdded to a content type A in the xml (using XmlDocuments). I have 4 other content types A1, A2, A3 and A4 that inherit from content type A (in their xml definition ...
0
votes
1answer
26 views

How do programmatically store the sharepoint document library document to local machine?

i have one question. How do pro-grammatically store the sharepoint document library document(eg Image.png) to local machine(D:/Images)?? Anybody have a solution???
0
votes
3answers
62 views

XSL to customize XsltListViewWebPart - Sharepoint Foundation 2013

I have created an external list. After it's rendered, link for each item looks like the following: <a class="ms-listlink ms-draggable" onfocus="OnLink(this)" ...
0
votes
0answers
8 views

Displaying Calculated Form in EditForm

I have a calculated form that concatenates 3 fields. These fields are editable in the new form but in the edit form I've used Javascript to set them as readonly. What I'm hoping to achieve is to ...
0
votes
0answers
13 views

Migration from sharepoint 2007 to sharepoint 2010 (special case)

The website in asp.net and the deployment of site in sharepoint 2007 by using the aspx pages not a publish or package. Now the problem is i already restore content database from 2007 to 2010. After ...
0
votes
0answers
12 views

Summary in search results show meaningless strings for ppt files

I have a few powerpoint files that display strange strings into their summary results in the search results page. For example for one document i see: … ...
1
vote
0answers
14 views

Return a Single Entity from SharePoint OData Service

I've created a custom OData service in SharePoint 2010 to return a list of entities representing subsites, however I'd also like to be able to return the root. To this end, I've created a function to ...
0
votes
0answers
11 views

Conditional formatting on text

I've applied conditional formatting on one of my webparts. However, any changes to the text do not get applied, only highlights.
0
votes
0answers
19 views

Conditionally format Date/Time on items greater than 24hours?

I have a calculated field called duration which subtracts the modified date/time from the created date time. I'm trying to created a conditional format in designer which highlights item rows if the ...
2
votes
2answers
63 views

Am I doing something wrong, or are these common pitfalls or limitations of using lookup lists?

I'm using (and limited to) OOTB Foundation 2010, and have been exploring lookup lists. I am discovering a few things that aren't working the way I'd like, seem to be working inconsistently, and are ...
0
votes
2answers
41 views

Get Elapse time from Created and Modified Columns

I'd like to created a calculated column which subtracts the modified date/time from the creation date/time, is this possible? EDIT: This worked for me - =TEXT(B2-A2,"h:mm:ss") replace the cell ...
0
votes
0answers
10 views

Show multiline field if specific select option selected

I'm trying to create a Note box to show up when an items status is set to cancelled. What I'm noticing in the html is that within a form, switching between options does change the html until saved. ...
0
votes
0answers
21 views

Using ajax to load SharePoint webparts

We are using Ajax to load webparts in aspx pages. But there are some buttons in webparts which causes postback. what's the best way to prevent those post backs so that whole page does not load all ...
0
votes
0answers
13 views

Move Workflow Task form, Association form and Initialization form to production

I have created a workflow in visual studio which uses Task form, Association form and Initialization form. The above mentioned forms has data connection which uses UDCX file (present in the Data ...
0
votes
2answers
34 views

Using workflow to set choice field value

I created a workflow which would change the dropdown value when the people picker field had a name, then it would send out an email. However, when i edit an item and select a name and save, the ...
0
votes
1answer
27 views

Control View based on Current User Role

I am trying to limit visibility to buttons and ability on a user control based on Role on a SharePoint 2010 Site. I get the user from the following code line SPContext.Current.Web.CurrentUser ...
0
votes
0answers
11 views

SharePoint 2010 Visual Web Part development @_parser.AddParsedSubObject LiteralControl WebPartPageUserException

I am using SharePoint 2010 Foundation on a vmware virtual machine. I am using Visual Studio 2012 update 3. I am working on a visual web part project. I have so far in this project only used asp.net ...
0
votes
1answer
24 views

Search results differ between accounts?

I am an admin for SP2010 site. One of our clients has noticed that when he does a search for anything he never gets any results. However, when I do a search using the same query he has, I get results. ...
0
votes
0answers
17 views

Set value of choice field based on input from people picker

I have Choice Field which i use to filter items within a list. I'm trying to figure out a way to set value of this choice field within my edit form is there is a name in the people picker field. ...
0
votes
2answers
55 views

Javascript fails in chrome and firefox, works fine in IE

I have this JavaScript code for my SharePoint forms which does not work in other browsers but Internet Explorer. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" ...
0
votes
0answers
14 views

Edit icon beside list item disappears if user does not have Add item permissions

I have a List and users with access cannot add items but only edit items. I've using a custom permission to ensure they can edit but not add or delete the details of the list item. However, if I ...
0
votes
1answer
11 views

Javascript works until saved

I have inserted some JavaScript into a Script Web Part. Just a button that adds some columns to a SharePoint list. It works when I click the preview button on the Insert Snippet/Embed page. It works ...
0
votes
1answer
28 views

Is Design Manager really available in Foundation 2013

During my search, I saw that Design Manager is available, but it appears that we cannot activate the publishing feature over a site or a site collection (which is mandatory to use the manager) Is ...
0
votes
1answer
17 views

Adding the sub menu item to send to item in sharepoint 2010

How can we add an additional entry to "Send To" menu option in document libraries. What is the GroupID and Location for adding item to the sub menu. Any idea?
0
votes
1answer
32 views

implementation of extra security login for SharePoint 2010

For one banking enterprise there is a separate SharePoint 2010 sales portal. Now company wants to implement extra layer of security by providing another extra login for all contributor to the sales ...
0
votes
0answers
17 views

“Contact Us” page in SharePoint 2010 public facing web site

for a SharePoint 2010 public facing web site (with anonymous access) what is the best approach to create a "Contact Us" page? is Application page is the best answer? or any other way to do this? Plz ...
1
vote
0answers
31 views

Ampersand in a choice of a choice field appears html encoded

I created a choice field where a choice contains an ampersand, then added an item to the list and for the choice field I selected the one with the ampersand. Now if I go to the display form of the ...
0
votes
0answers
10 views

How to create MySite & ContentType Hub in HNSC in SharePoint 2010

Can any one guide how to add (in SharePoint 2010) ContentType Hub in HNSC MySite in HNSC In both cases these will be site collection rather than Web Application. Any expert plz share steps ...
0
votes
0answers
50 views

App installation failure due to App Management Shared Service Proxy

I have a SharePoint 2013 Foundation installation for development activity and when trying to deploy a SharePoint hosted App, I get the error: App Management Shared Service Proxy is not installed. ...
1
vote
1answer
24 views

Versioning of WSP package

Can we keep versioning of WSP package? If yes then how? I know only components within WSP can be versioned.... but what will be real answer? Rgds
0
votes
0answers
30 views

SharePoint 2010 How can I efficiently get all employees to read and Accept on a policy?

How can I efficiently get all employees to read and Accept on a policy? We have certain policies that need to be read and accepted on by ALL employees Need to be able to track who has "Read" the ...
0
votes
1answer
38 views

Hide the “Download a copy” for sharepoint list items

I want to hide the "Download a Copy" option that comes when we click the "Send To" option. How can we achieve this? Any idea?
0
votes
0answers
16 views

Not picking up the new color I added in .spcolor - Sharepoint 2013

I created a new spcolor (test.spcolor), added a new color at the end called: "test1" btw, the file is "un-customized", it's a new file <?xml version="1.0" encoding="utf-8"?> <s:colorPalette ...
1
vote
0answers
37 views

Exception when deleting webpart Microsoft.SharePoint.WebPartPages.WebPartPageUserException

I have been looking for any leads on this direction on the web and most of the issues I have found is when they try to add a webpart but I am running across the issue where I am getting an exception ...
2
votes
1answer
44 views

How can I change URL of existing list?

If I create a list with a name like Project Risks it gives it a url like: http://myhost/mysite/Lists/Project%20Risks/AllItems.aspx. If I customize the list and then decide I want it call Project ...
1
vote
0answers
36 views

BI Semantic Model Connection in SharePoint

I am working with SharePoint 2013 and SQL Server 2012(Build 1103). I am able to successfully setup and run everything but for some reason BI semantic model connection is not working. As soon as I ...
0
votes
1answer
32 views

Access Denied when using CancelWithRedirectURL

I'm trying to prevent some records from being deleted from a list. I've got the ItemDeleting event firing and everything works great. I can prevent the item from being deleted just fine. The ...
1
vote
1answer
38 views

Error while crawling LOB contents

I have configured and run sample code taken from the MSDN website for a custom BCS indexing connector sample for Sharepoint 2013: http://code.msdn.microsoft.com/SharePoint-2013-MyFileConne-79d2ea26 ...
0
votes
0answers
27 views

XsltListViewWebPart / display folder content by default

Is there possibility to modify XsltListViewWebPart instance so it displays content of some library folder by default? (content=documents and subfolders) I need to achieve something similar to Meeting ...
0
votes
2answers
50 views

SharePoint 2013 editions

I am researching upgrade scenarios for SharePoint 2013 and cant find any official information. So the questions are: Am I right saying that SharePoint 2013 Foundation cant be upgraded to ...
0
votes
0answers
15 views

Uploading a document manually to a SharePoint document library using Jquery [duplicate]

I have been searching for a way to upload a document manually to a SharePoint document library using Jquery. i have done it in C#, but i want to do the same in Jquery. Still i couldn't find the way, ...
0
votes
1answer
30 views

Update .spcolor file doesn't reflect on the site - Sharepoint 2013 foundation

I have Sharepoint 2013 Foundation installed. I'm following this article to modify/create composed look: ...

1 2 3 4 5 30