Rakesh Patel
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...
Monday, March 19, 2018

capitalize , lowercase, uppercase to HTML input Text

›
I have found number of JavaScript to convert text to upper while keypress. But the way we can use CSS is the best... capitalize , lowercas...
‹
›
Home
View web version
Powered by Blogger.