Month: December 2013

$skip does not work in SharePoint 2013 OData REST Endpoint for list item retrieval
This came as a surprise to me seeing the OData URI query option "$skip" does not work, while trying to implement pagination logic on list using SharePoint 2013 REST API. Although this works perfectly well with the old ListData.svc...:( So here are some alternatives that can help you in your paginations: 1. Using $filter URI ...

Extract the Term Sets and their custom properties using CSOM in SharePoint 2013
The code snippet below will help you to query the SharePoint 2013 Term store using CSOM (ECMAScript)://Get the Current SP Context var context = SP.ClientContext.get_current(); //Get the Current SP Taxonomy Session var taxSession = SP.Taxonomy.TaxonomySession.getTaxonomySession(context); //Get the Term Stores instance var termStores = taxSession.get_termStores(); //Get the exact Term Store you would like to query//To get this...goto your term ...