Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
127 views

How to set the name of a new SPListItem programmatically?

I have a custom list which can contain a CustomContentType. This is how i create a new item: //Create root folder SPListItem rootItem = navigation.Items.Add(); SPContentType folderType = ...
6
votes
4answers
4k views

Find latest approved version of an SPListItem

I am trying to iterate through the SPListItem.Versions collection to find the latest approved list item. My list item has three versions: the first two are approved, the last is in draft. But my code ...
3
votes
4answers
3k views

When is SPFile.Properties != to SPFile.Item.Properties in SharePoint?

One of our customers has a problem that we cannot reproduce. We programmatically copy a document's properties to a destination file using SPFile.Properties. However, for some reason the file's ...
2
votes
3answers
2k views

How to get the context from workflow event handler in Sharepoint 2010

I am in the process of upgrading our custom solutions to Sharepoint 2010. I wanted to utilize the WorkflowCompleted event handler but I don't seem to be able to get the relevant SPListItem from the ...
2
votes
1answer
470 views

SPQuery and RowLimit

I have around 10000+ rows(Listitems) in a list I want to query. I want to iterate each of the item in a timerJob - but I cant take all of them at a time since : Object Model Override - NO, ...
2
votes
2answers
3k views

Setting author field in SPListItem won't persist

I am trying to copy an SPListItem (with file) from one site collection to another. I do this by creating the file like this: var archiveFile = ...
1
vote
1answer
288 views

SharePoint list item with checkbox databinding possible?

In SharePoint I can tee up a binding to an edit field like this below. When the form posts back the changes are automatically persisted to the underlying list item. ...
1
vote
1answer
174 views

Changing the “update rules”-parameter of a KpiListItem in SharePoint 2010 programmatically

[ short reminder: english is not my native language :) ] Hello, I have this problem for a few days now (and it starts to drive me seriously mad). Like the title says, my problem is that I need to ...
1
vote
2answers
1k views

How to get the latest item created by a specific user by CAML query

I am trying to get the most recent item created by a specific user by CAML query but it seems to return all the data created by everyone. Help please. Here's my code: string lifestyleQuery = ...
1
vote
2answers
321 views

SharePoint List - Copy SPListItem ID

I have a solution that copies all the content of SharePoint lists to a file, and then copies the content of the file back onto SharePoint (used for backups and stage / live environment switches). Now ...
1
vote
1answer
2k views

Insert/Update multiple lookup values to an SPListItem

My SharePoint list has a column that allows multiple lookup values. My C# control (within a webpart) allows the user to make multiple selections from a list box. I split these values into an array - ...
1
vote
2answers
459 views

SharePoint: Apply source ContentType to destination when copying a SPListItem

Greetings, I've written my own ContentType definition that can be applied to any Document Library. I would like to preserve the data associated with an item via my ContentType when that item is ...
1
vote
3answers
1k views

Iterating through a SPListItem/SPList

I'm making a checklist for people to do tasks on our company website. The feature I'm working on right now is that once they complete a task and mark it as done, I want our sharepoint webpart to send ...
1
vote
0answers
1k views

SharePoint: How to create/delete multiple items in a transaction

I am trying to delete multiple items in a sharepoint list. But the constraint is : either all the items should be deleted or not a single item should be delted.In short I am looking for trasactional ...
1
vote
4answers
8k views

How to copy SPListitem from one SPList to Another SPList

I have requirement to copy items from one SPList to another, Here is the code which is not working: public void CopyList(SPList src) { //Copy items from source List to Destination List ...
1
vote
1answer
379 views

How to use HTTPContext for SPList

I have the following requirement. public void GetSubSite(SPWeb site) { site.AllowUnsafeUpdates = true; SPList destinationList = site.Lists[TASKS]; SPWebCollection subSitesCollection = ...
1
vote
1answer
2k views

How to copy a DataTable to a SharePoint SPList?

I have my source list data in the sourceList data table and want to copy that data to its root list. How can I do that? private void MoveToTopTaskList(DataTable sourceList, SPSite ...
1
vote
1answer
1k views

SharePoint SPListItem.ContentType.Name - “Message” vs “Discussion”?

I am writing a C# code to find all of our SharePoint Sites that have emails contained in the Email List page. It appears that some of our email messages are SPListItem.ContentType.Name = "Message" and ...
0
votes
4answers
134 views

Adding to Sharepoint List as Anonymous user

right now, I'm using the SPSecurity.RunWithElevatedPrivileges method to let anonymous users add list items to a list. What i would like to do is make a general method that takes a Site, List and List ...
0
votes
2answers
88 views

SPListItem not added to SPList

I'm using the following code to add an item to a list on the top level of my application but it is not adding anything, does anyone know why? Is there anything missing? It doesn't return me any ...
0
votes
1answer
142 views

sharepoint splistitem.Update fails

I have the following code: using(SPWeb web = ... { .... SPListItem item = GetItemById(id); item["Status"] = status; item["Reason"] = reason; item.Update(); } And I got ...
0
votes
0answers
37 views

SharePoint adding listitem with value for choice

I have a SharePoint List with a Choice Column (By name "OUT_WEEKEND") that has Three Values "Yes", "No" and "MayBe" While creating a new ListItem, myListItem["OUT_WEEKEND"] = "Yes"; The above line ...
0
votes
1answer
288 views

List item event receiver on lists in multiple webs - SharePoint 2010

I have multiple webs instantiated using the same template. When the web is created a custom list is created as well. Is there a way to define a global event receiver to handle to handle the ItemAdded ...
0
votes
0answers
218 views

Need Help - How to update listitem of content type User in sharepoint 2010?

I am trying to update a list which is having User content type field, where I am saving users name selected from people picker. Now my requirement is to add/remove a particular person in that list ...
0
votes
0answers
60 views

Is is possible to implement CAML for a list so foreach is limited?

I only want to go through all items in a list where active=true. So SPList mylist = "somelist" then I would like shorten the number of items by running CAML against it (where active=true) so that when ...
0
votes
1answer
779 views

Sharepoint 2010, Determine access to SPListItem based on a Current User

i am using a CAML Queryy to get all the list items that are cotains a ContentType, but i also need to know if the Current user, has permissions to see that file. That part i do not know how can i ...
0
votes
1answer
308 views

SPListItem.Update() throws exception when trying to update Title. 255 char limit issue with encoding

It seems that I have an issue with encoding. The field max width is 255 chars and the title is indeed 255 chars, however there are some characters in the title (quotes and angle brackets) that are ...
0
votes
0answers
317 views

Events not firing when updating a SPListItem

I am updating an infopath form contained within a SharePoint form library. The library requires check in and check out. So the SPFile is being checked out I am then updating the xml as required and ...
0
votes
2answers
432 views

Extension method used to prevent SharePoint list item event receiver help

I came across this post with a great solution to the problem of preventing the event receiver on an SPListItem firing when performing the update from outside the event receiver. The code works 100% as ...
0
votes
0answers
281 views

note board of a list item in sharepoint 2010

of a particular i want to programatically access NoteBoard of a particular list item of a custom sharepoint2010 list .. ie you can refer this and this can any one suggest me a way how to access ...
0
votes
1answer
759 views

c# Insert/Update multiple lookup values to an SPListItem

sharepoint allows multiple items to be added for a lookup column type. Is there a good article that has the code snippet to update or add lookup values?
0
votes
3answers
354 views

Item count should be 10 but is 0

the items.count should be atlease 10. I have 10 subfolders (Release 1 ..... Release 10) with in this documnent library "Auto Cad" and each subfolder has a file called license.txt. hmmm Why this is not ...
0
votes
3answers
599 views

How to format SQLServer DateTime (mm/dd/yyy HH:MM:SS AM/PM)

Help please. How can I format the DateTime column in SQLServer 2005 to store the following format: (mm/dd/yyy HH:MM:SS AM/PM) Below is my code: private void UpdateRecord(string status, int ...
0
votes
1answer
405 views

Workflow lock “edit item”

Is it possible to disable "edit item" in a Sharepoint List when a custom workflow is running? Maybe a property in the workflow that can be affected? Thanks, David Esteves
0
votes
1answer
348 views

Can I retrieve additional fields for a SPListItem from SPQuery which had ViewFields set?

I am retrieving SPListItems from SPList with a SPQuery that has ViewFields set. I am using ViewFields to improve performance. However, for some items, I need additional data. I know I can just ...
0
votes
1answer
195 views

How do I stall until a SharePoint List Item is Deleted with SPLongOperation?

I have a workflow, which creates a task and deletes it after the task is edited and its useful information acquired. I created a custom edit form for the task, so I have an SPLongOperation that I can ...
0
votes
2answers
578 views

Copying List Items from Master List to sub sites

I have a site which contains a custom list Master. I have a number of sub sites which contain copies of this list. When someone edits or adds a new list item to the master list, I would like all sub ...
0
votes
3answers
868 views

I am adding a new splistitem to a sharepoint list but it always gives me an exception: “object reference not set to an instance of an object”

_site = new SPSite("http:\\MySite"); _web = site.OpenWeb(); { list = _web.Lists[sListName]; _web.AllowUnsafeUpdates = true; items = list.Items; item = items.Add(); item["Title"] = ...
0
votes
2answers
4k views

Finding SharePoint list item by its display form's URL

Sometimes users require to change information in SharePoint list item that is not editable for them, for instance, a field that is hidden in edit form (in my case it was the records number). I ...
0
votes
5answers
3k views

SPList Item get value - ArgumentException

I have an SPListItem and I have an array of column names. When I try to access the SPListItem values using the code below: for(int i=0;i<arrColName.length;i++) { string tempValue = ...
0
votes
0answers
193 views

How to hide SPListItem

hi I want to hide a particular SPListitem , want only visible to the Admin. how can i do that? thanks Azra
-1
votes
1answer
146 views

Constructing a linq query with dynamic ListItem columns that are type boolean

"selectedBA" is the variable that contains a value determined @ runtime. how can i incorporate this into a linq statement that will give me all the items in a SPList where the dynamic column ...