In the Javascript below, we illustrate how to create a REST query that will return all of the List Items in a particular list and also filter the results. //lists/getByTitle('MyList')/items?$select= Title&$expand=Author" //example of the syntax of the filter var query = "LinkTitle eq '0001'"; return $.ajax({ url: "https://mySite/_api/web/lists/getbytitle('MyList')/items" + query, ...

Read More

            \\ This example delete all nodes of Navigation.QuickLaunch            \\constructor of the client context: requires an input parameter             using (var context = new ClientContext(siteUrl))             {                                \\quicklaunch of the object web                  NavigationNodeCollection nodes = context.Web.Navigation.QuickLaunch;                 context.Load(nodes);                 context.ExecuteQuery();                 \\linq ...

Read More

If you happen to stumble upon this problem: “WSS PROXY USAGE APPLICATION STOPPED” follow this procedure: Read id proxy services: launch from management shell: Get-SPServiceApplicationProxy Take the id of the service WSS Usage Application proxies (example: 97b0f809-cf86-4740-9e4f-61edf9a40d93) Execute the commands listed below (together): $UsageApp = Get-SPServiceApplicationProxy | Where {$_.ID -eq ...

Read More

The following example reads specific properties of a website. try {      string siteUrl = "http://server/SiteCol";      //The constructor ClientContext requires a url      using(ClientContext clientContext = new ClientContext(siteUrl))     {          Web website = clientContext.Web;        //retrieves the title and site Created    ...

Read More