Tagged Questions
1
vote
0answers
12 views
SP2010 - Visual Web Part - Storing metadata in folders in document libraries
I want to store a number to folders to enforce ordering.
I noticed these three pages
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spfolder.getproperty.aspx
...
0
votes
1answer
17 views
SP 2010 Visual Webpart - How to get all documents in a folder and sort them by caml query?
I am making a visual web part for sharepoint 2010. I have a SPFolder object and I want to get all items in it, but I want to sort it by a specific field. I want to do this by CAML query instead of ...
0
votes
0answers
20 views
CAML query to select users IDs
I'm trying to select users ids from custom tasks lists. All users are in one SP Group and I need to collect users Ids that doesn't have tasks.
query.Query = string.Format("<And><Membership ...
3
votes
1answer
48 views
CAML Query Lookup/Choice Value Type as Text
So, here is some lines of code that i write to retrieve data from Sharepoint list using CAML query.
string qryCaml = string.Format(@"<Where>
<And>
...
1
vote
0answers
63 views
CAML Query on a Calculated Lookup Field
I wrote some CAML Queries to modify the View of a List and all is working fine as long as I do not reference a Lookup Field which points to a calculated Field.
I tried different types in the value ...
0
votes
1answer
33 views
How to list all alements by CAML to SPGridView
Is it possible to display the listitems retrieved from a CAML query in a SPGridView?
How can I implement it?
0
votes
3answers
365 views
Is it possible to have CAML Join without Lookup Columns?
I am new to SharePoint. I am developing a web-part in that I am trying to join two list.
I have a same web-part in that lists were join using LINQ query.
But it takes more time to fetch the data. So ...
2
votes
1answer
84 views
Help Return Lists With With No List Items
This is my first time posting and I'm looking for some help, so hopefully someone has an answer. I used the search, but didn't find anything.
I created a custom list definition, and content type ...
0
votes
1answer
167 views
How tu change a date format in CAML
I have got a wrong format of date to a CAML. I have got (yyyy-mm-dd) and must to be understand by CAML to the format(dd-mm-yyyy), how could I done this. Please help me. I tried by ...
1
vote
1answer
102 views
Caml accent-sensitive
I wonder if the caml supports accent-sensitive, I'm doing a query and have many records with an accent and realized that these items are not appearing
What can I do in this case?
I can use any search ...
2
votes
1answer
189 views
Should we use web service lists.asmx over CAML when working with large lists
There is a list that has around 100k items in a SharePoint Site Collection. This site has been customized to serve certain business requirements through visual webparts.
While, regular CRUD ...
1
vote
1answer
264 views
Issue while Fetching recurring items from Sharepoint Calendar
I want to fetch all the items on a particular day. Programmatically the entry is added as recurring event, Now i need to fetch all the instances of recurring event, on each day as per the date ...
5
votes
3answers
569 views
sharepoint caml is fast - how?
We all know that Caml is faster than using linq, since linq internally gets translated to caml.
But can anyone explain how caml is best to do sharepoint queries or how it is fast or what makes it ...
0
votes
4answers
183 views
Should I learn CAML? [closed]
I've been spending the last few days studying sharepoint and plan to work with it for a long time - but I've only just heard the word CAML mentioned and seen it's querying in action, is it something ...
0
votes
1answer
166 views
Filter list based off a set of IDs
I've written a web part that generates several KPIs based off a list given:
- List and column names placed in custom configuration values
- Parameters at run time
Each KPI is composed from a set of ...