1. GET NODE
Download LTS ( Long Term Support ) version of node . You can also check if you have node by running
node --version
2. INSTALL NPM
NPM, also know as node package manager is used to install packages...
Thursday, April 20, 2017
Monday, April 17, 2017
Delete List/Library on SharePoint Online when there is no remove or delete option
There are two possible reasons as to why you cannot see the remove or delete option on a list or a library.
You don't have enough permissions.
The library or list was created with "Allow Deleting"...
Thursday, April 14, 2016
Create Graphs and Charts from SharePoint lists using charts.js
Chart.js is an HTML5 responsive library to build beautiful charts.
Now that charts web part is no longer available in SharePoint 2013, I decide to go for this option. We can also use excel services , but I like this better :)
We will be using REST api to pull items from the list and draw out charts
Create...