SharePoint Dynamic CRUD Operations using Rest API
SharePoint Dynamic CRUD Operations using Rest API Use the below code for dynamic CRUD operations. You can create CRUD.js file using the below code & call the crud operations from different places by passing different parameters. //<<<<<<<<<<<<<<<<<<<<<<<< NOTE - Follow the below instructions to call the CURD Functions >>>>>>>>>>>>>>>>>>>>>>>>> //-----------------createItem('ListName',['ColumnName1','ColumnName2',...],['Value1','Value2',...]);------------- //Example: createItem('testlist',['Title','Name','Age'],['ABC','XYZ',10]); //-----------------updateItem('ListName',itemID,['ColumnName1','ColumnName2',...],['Value1','Value2',...]);------ //Exampl...