|
I have items in a list in a SharePoint 2003 site that I need to add to an existing list in a 2007 site. The items have attachments.
How can this be accomplished using PowerShell or C#?
Started by Matt Spradley on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
// addResults is the return, fileName, data....
Attachments, from one SharePoint List (either 2003 or 2007) to another one:
1) This is the code moves in one SharePoint server to a list item in another SharePoint server.
|
|
What would be the best approach or strategy for configuring, customizing or developing in SharePoint a solution that allows me to keep one or more SharePoint lists in sync with a SharePoint list I have designated as a master or parent list.
I would like...
Started by plattnum on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you considered just creating a view from the existing foo list? And assigning permissions to - retrieve list/array of these objects, refer to them and do what you have to..
|
|
Does anyone know where I can find a list of all the WebParts, Features and ContentTypes that are available to a regular Sharepoint installation?
What I need to do is identify any of the above in a sharepoint site that are not part of the standard Microsoft...
Started by glenatron on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://www.sharepointblogs.com/bobbyhabib/ketaanhs/archive/2008/02/12/out-of....
Found the following list of feature names by running Dir /B on the Sharepoint TEMPLATES\FEATURESHere's a list of the web parts MOSS has out of the box...
|
Ask your Facebook Friends
|
I've built a web part for Sharepoint that retrieves data from an external service. I'd like to display the items in a way that's UI-compatible with Sharepoint (fits in with its surroundings.)
I'm aware of the "DataFormWebPart" but was unable to get one...
Started by Steve Eisner on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
SharePoint list ;-)
So connect the WSS 3.0 / SharePoint 2007 list directly to your external data with background update using....
The most compatible gui of a SharePoint list is a ...
SharePoint does itself.
|
|
I have seen a SharePoint list (Custom list) where text shows up, whenever a list is empty (only for some views). E.g. to inform users of the guidelines for the list usage.
How can this be implemented?
Ok with javascript/jquery solution
Started by noesgard on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can also change the list controls on your view pages into Data Views using SharePoint....
To make it nicer very welcome - made community wiki.)
To make this work on a custom list, replace (.+document\\slibrary\\.) with (.+list\\.) .
|
|
In Sharepoint how can you copy a list item from one list to another list eg copy from "List A" to "List B" (both are at the root of the site)
I want this copying to occur when a new list item is added to "List A"
I tried using the CopyTo() method of an...
Started by raklos on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Take a look a CopyMove for SharePoint could create a simple workflow that runs automatically....
Copying and moving files, items and folders in SharePoint can be tricky if you want to retain all metadata, timestamps, author info and version history.
|
|
Hi SharePoint Experts, Can use my custom page to add/Edit item from sharepoint list? if yes how? Do i need to do any config changes?
Started by gauravghodnadikar on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
And to customize it even....
You will use SharePoint; SharePoint Controls => List Form or Form Web Part and play around to see if it fits your needs.
Sure you can! Check Create a custom list article form from Microsoft site.
|
|
What's the best way to get a list of users that are assigned to a SharePoint portal?
Thanks.
Started by Ryan Smith on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
All users that exist in a SharePoint web (but don't necessarily have permission):
SPWeb.AllUsers
Users that exist in a SharePoint web but have been granted some permission:
SPWeb.....
It depends on exactly what list of users you want.
|
|
What is the best way to store your Data outside of SharePoint. I want to use the default Edit/View options in SharePoint (though I do plan on extending their functionality). I need to store the data outside of the SharePoint Lists as I am expecting a ...
Started by runxc1 Bret Ferrier on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I totally agree with GalacticJello, storing data outside of the regular sharepoint content database provider implementations only do just that, making sharepoint store stuff in a different location than storage and the list items ....
|
|
Can sharepoint search work for list item attachments. I have a custom list where I am loading attachments. Can SharePoint search through the content of the attachment.
Started by HT on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It can search attachments as long as it has an IFilter for the file type, just like files in document libraries. .
According to the comments in this post it should index and search attachements in lists.
|