Tuesday, June 19, 2018
Remove duplicate
through JQuery
›
test1 test2 test1 test2 var seen = {}; $('table t...
Monday, April 9, 2018
Display User Profile Picture in SharePoint 2013 Site
›
Get the URL from the current user's profile via REST, the image tag used to display when the src is updated: /_api/sp.userprofiles.peo...
Thursday, March 29, 2018
Only Numeric with Single Decimal - JavaScript
›
//Keypress event on a Class $('.onlyNumeric').on('keypress', function(e) { return isNumber(event, this); }); //Fu...
Friday, March 23, 2018
Send Email with Powershell
›
Example1 # You must have Site Collection Access to use following process. function SendEmail($requestor) { ...
Delete List Item with Excel Data Using Powershell
›
function DeleteListItem(){ $inputfile = Get-FileName "c:\" if($inputfile -ne "") { $objExcel=...
Update List Item with Excel Data Using Powershell
›
function UpdateListItem(){ $inputfile = Get-FileName "c:\" if($inputfile -ne "") { $...
Create List Item with Excel Data Using Powershell
›
function AddListItem(){ $inputfile = Get-FileName "c:\" if($inputfile -ne "") { $objExcel=New...
‹
›
Home
View web version