Posts

Showing posts from March, 2017
My new blog present here.

Featured Post

Insights into Sitecore Search: A Definitive Introduction

A key component of digital experience management is effective information retrieval. A simplified approach is required for websites, applications, and platforms containing a lot of material so that consumers can easily get the data they require. This need is met by Sitecore, a well-known name in the field of digital experience platforms (DXPs), which provides powerful and comprehensive search functionality. We will travel into the realm of Sitecore Search in this article, learning about its capabilities, architecture , and the enormous value it offers both developers and end users. Introduction to Sitecore Search    A headless content discovery platform powered by AI , Sitecore Search enables you to build predictive and custom search experiences across various content sources. To extract and index you

SPServices:Delete item in SharePoint List or Document Library using SPServices jQuery library in SharePoint

Image
Delete item in SharePoint List or Document Library using SPServices jQuery library in SharePoint In my previous article, Update item in SharePoint List or Document Library using SPServices jQuery library in SharePoint , I already explained about $().SPServices.UpdateListItems operation to access the listing of folder. For example, in SharePoint online site, we need to delete item in SharePoint List or Document library on the basis of key field when user click on button. To implement above requirement, we can not use the SharePoint Server Side code, so we need to utilize the Client Side Scripting – JSOM/Call to SharePoint REST API using JQuery/Use of SPServices JQuery Library . Now, I am going to explain how to delete item in SharePoint List or Document Library using SPServices jQuery library in SharePoint. SPServices JavaScript Library ($().SPServices) provides function called UpdateListItems to delete content in the SharePoint list. Delete item the SharePoint Documen

SPServices:Update item in SharePoint List or Document Library using SPServices jQuery library in SharePoint

Image
In my previous article, How to create folder inside SharePoint List or Document Library using SPServices jQuery library in SharePoint , I already explained about $().SPServices .UpdateListItems operation to access the listing of folder. For example, in SharePoint online site, we need to update item in SharePoint List or Document library on the basis of key field when user click on button. To implement above requirement, we can not use the SharePoint Server Side code, so we need to utilize the Client Side Scripting – JSOM/Call to SharePoint REST API using JQuery/Use of SPServices JQuery Library. Now, I am going to explain how to update item in SharePoint List or Document Library using SPServices jQuery library in SharePoint. SPServices JavaScript Library ( $().SPServices ) provides function called UpdateListItems to update content in the SharePoint list. Update item the SharePoint Document Library or List using $().SPServices.UpdateListItems operation with valuepairs optio

SPServices:How to create/add folder in SharePoint List or Document Library using SPServices jQuery library in SharePoint

Image
In my previous article, How to access list of folder name from SharePoint List or Document Library using SPServices jQuery library in SharePoint , I already explained about $().SPServices .GetListItems operation to access the listing of folder. Take an example of one requirement: In SharePoint online site, we need to create the folder in SharePoint List or Document library when user click on button. To implement above requirement, we can not use the SharePoint Server Side code, so we need to utilize the Client Side Scripting – JSOM/Call to SharePoint REST API using JQuery/Use of SPServices JQuery Library . Now, I am going to explain how to create/add folder in SharePoint List or Document Library using SPServices jQuery library in SharePoint. SPServices JavaScript Library ($().SPServices) provides function called UpdateListItems to update content in the SharePoint list. The $().SPServices.UpdateListItems function details are: [pre class="brush:jscript" ] $().SPSer

SPServices:How to access list of folder name from SharePoint List or Document Library using SPServices jQuery library in SharePoint

Image
In my previous article, How to access List Data using SPServices jQuery library in SharePoint , I already explained about $().SPServices .GetListItems . Now, I am going to explain how to get listing of folders including sub-folders in a SharePoint List or Library with SPServices. SPServices JavaScript Library ( $().SPServices ) provides function called GetListItems to access the data from list. The GetListItems function details are: [pre class="brush:jscript" ] $().SPServices({ operation: "GetListItems", async: {true or false}, listName: {list name}, CAMLQuery: {caml query}, CAMLQueryOptions: {caml Query Options}, webURL: {weburl} }); [/pre] operation: name of the $().SPServices operation is "GetListItems" async: you can pass true or false listName: Name of the list from which data needs to be fetched CAMLQuery: You can mention the CAML query XML with filters. For example, if one of

SPServices:How to access List Data using SPServices jQuery library in SharePoint

Image
In my previous article, what is SPServices , I already explained about this JavaScript add-on. Now, I am going to explain how to access List Data using SPServices. SPServices JavaScript Library ($().SPServices) provides function called GetListItems to access the data from list. The GetListItems function details are: [pre class="brush:jscript" ] $().SPServices({ operation: "GetListItems", async: {true or false}, listName: {list name}, CAMLQuery: {caml query}, CAMLQueryOptions: {caml Query Options}, webURL: {weburl} }); [/pre] operation: name of the $().SPServices operation is "GetListItems"  async: you can pass true or false  listName: Name of the list from which data needs to be fetched  CAMLQuery: You can mention the CAML query XML with filters. For example, if one of the column name in list is IsAction, then sample CAML query would be: [pre class="brush:jscript" ] var caml