Posts

Showing posts from September, 2017

CRUD operation using JSOM

Image
CRUD operation using JSOM List Structure: <SharePoint:ScriptLink name="sp.js" runat="server" OnDemand="true" LoadAfterUI="true" Localizable="false"/>  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script type='text/javascript'> 'use strict'     ExecuteOrDelayUntilScriptLoaded(initializePage, "sp.js"); function initializePage() {                 var context=SP.ClientContext.get_current();                 var web=context.get_web();                 var list=web.get_lists().getByTitle("companyinfo");                 var MainResult =""; //'Items in the Divisions list: <br><br>';                 var items=null;                 ...