The splistitemcollection tag has no wiki summary.
1
vote
2answers
651 views
Get value of Hyperlink field in Sharepoint 2010 list item
I'm trying to get the value of a field of type "Hyperlink or Image" (currently set to "Hyperlink" in the column settings that is being returned as part of a Sharepoint 2010 ListItem. I'm using the ...
0
votes
2answers
2k views
SPListItemCollection Get ItemCount with rowlimit
I am filtering a list in caml
SPQuery oQuery = new SPQuery();
oQuery.Query = "<OrderBy><FieldRef Name='FullName' /></OrderBy><Where><Contains><FieldRef ...
0
votes
1answer
41 views
How to get SPListItemCollection from a SPFolder?
I am making a SharePoint 2010 visual web part, and I want to recursively iterate through all files in a document library which has nested folders. I can get a SPListItemCollection for all items and ...
1
vote
0answers
91 views
Is my Object Casting Model acceptable?
I'm creating a SharePoint application, and am trying some new things to create what amounts to an API for Data Access to maintain consistency and conventions.
I haven't seen this before, and that ...
0
votes
0answers
22 views
File in document library is missing SPListItem
I have a "Master Page Gallery" where I can get some files using myList.RootFolder.Files but they do not exisit in myList.GetItems()
Using powershell I have found the file has all valid data but no ...
0
votes
0answers
8 views
How can I insert an action that collects data from multiple users in one action
How can I insert an action that collects data from multiple (8) users in one action, instead of inserting eight Collect Data actions to the workflow?
0
votes
0answers
184 views
SPListItemCollection.EnsureListItemsData seems to deadlock
I'm trying out multithreading with the SP2010 Object Model and I've run into some weirdness.
My application currently does the following:
Opens an SPSite and uses AllWebs.WebsInfo to build a Guid[] ...