API for interacting with SharePoint from .NET, Silverlight, and JavaScript.
0
votes
1answer
14 views
Javascript IIFE and SharePoint Client Object Model
I'm having a problem with my javascript code that I am sure is to do with scope, but I can't figure out where I'm going wrong.
I'm trying to write a method that will allow me to retrieve items in a ...
1
vote
2answers
32 views
Connect to SharePoint Online using the Client Object Model from .NET 3.5
We have an on premise SharePoint 2010 farm, and a SharePoint Online 2013 farm. We would like to be able to have a solution running on the on premise farm that will talk to the online farm.
Since the ...
1
vote
1answer
165 views
How to Create multiple Document Uploader in Client Object Model?
I want to create multiple file upload application(Client Object Modal) which upload the multiple document in the specific(selected) document library with the meta data(custom properties in library).
...
0
votes
1answer
37 views
Control JavaScript with Ribbon Button
my aim is to add a Ribbon Button which is opening a printing dialog for a selected file in a document library. I already added the Button with SP Designer and linked it with a html file which is ...
0
votes
1answer
39 views
CAML Query works in my VS2010U, but not on anybody else's computer
I have a list with records uniquely identified by project numbers. This is column 5 - Col05 in my list. It works fine when I run the code, and I am getting the expected record. I can also read the ...
1
vote
1answer
421 views
set or update multiple values cascading lookup field using client object model
I'm struggling since a couple of weeks with setting a multiple values cascading lookup field using a client object model,
I could set the first value but then It show me an error of invalid lookup ...
0
votes
1answer
36 views
Programatically update profile field(s)
I have a requirement to update user profile fields. I'm able to query the fields, of course, using the CSOM API in Javascript.
But, as per here - ...
4
votes
1answer
554 views
How to add rich text content programmatically using Managed Client Object Model?
I am building a Silverlight application that interacts with SharePoint through Managed Client Object Model. One of the functionalities of the app is to update a list item field with rich text content. ...
0
votes
1answer
23 views
Date from list being displayed wrong on graph created programmatically
I have a list, where one column is of type datetime and another a numeric value.
The records are being entered correctly, in the form:
ID Col01 Col02
01 05/02/2013 6
02 05/03/2013 9
...
2
votes
1answer
435 views
Get TaxonomySession TermStore TermSet Term from Sharepoint 2010 Server using Microsoft.Sharepoint.Client.Taxonomy.dll
I'm coding a c++/c# client-application to communicate with a Sharepoint 2010 site which uses Taxonomy
I have downloaded and installed Microsoft.Sharepoint.Client.Taxonomy.dll from:
...
1
vote
2answers
32 views
Track users opening files from the farm?
Our internal auditors have made a request to produce a regular report that shows when users access certain files.
With this in mind I was wondering - is there a way in the object model or otherwise ...
0
votes
1answer
300 views
Querying for File properties plus ListItemAllFields properties
I'm trying to retrieve both a file's Id in its list, plus its ETag, using the following snippet;
using (var clientContext = new ClientContext(webUrl))
{
var results = clientContext.Web.Lists
...
0
votes
2answers
2k views
How to get Item from ListItem with Client Object model
I'm trying to printOut some items from a ListItem. But when run the code I get following exception:
"Invalid usage of query execution. The query should be executed by using ExecuteQuery method on ...
2
votes
1answer
28 views
Allow users to see other users in sharepoint groups with CSOM
How can I allow users to view the users in a sharepoint group? Currently if I try to query users in the site groups using the client object model I get an unauthorized exception.
For example, if I am ...
1
vote
1answer
30 views
Client Object Model - Select distinct
I am using ClientObjectModel (C#) to retreive data from a custom list, which is structured like this:
What i need is some kind of "select distinct" which retreives only the categories, without ...