Posts

Showing posts from December, 2018

SharePoint Framework client-side web part sample with Angular Elements

Image
Greeting Web Part This web part is created with Angular Element. It has one element ā€œ issharepoint ā€ which takes true if user is running this web part in SharePoint environment. Basically it shows current User Name, Title, Picture Url from ā€œsp.profiles.myPropertiesā€ & Web Title from web object. Here is the custom element created : <app-greeting-wp-web-part issharepoint= ${ true } ></app-greeting-wp-web-part> Just download code from GitHub and install dependencies. I am using PnP JS to get data from SharePoint. I donā€™t want to run npm install every time when I am making any changes. So I made a small change in the project by adding a new file called ā€œcopyfile.jsā€. This file copies the ā€œbundle.jsā€ file to SPFx @node_modules folder. So you have to make changes in the destination path in the file. Thanks to Stefan Bauer for @pnp/spfx  and  Andrew Connell for blog

Administrator is not able to change userā€™s picture in User Profile in SharePoint Admin Center

For some users Admin is able to change picture by going to User Profile -> Manage user profile option. But for some users , Admin is not able to change pictures & SharePoint is showing the message ā€œ Only user can change this photo ā€. Admin can delete the photo but canā€™t upload. Here is the way to change userā€™s picture. Just go to Manage User Profile option form SharePoint Admin Center -> User Profile and search for the user. Now modify the user & search for the property ā€œPicture Exchange Sync Stateā€. You will see that itā€™s value is non zero. Just change it to Zero (0) & save it. Now reopen this profile again. You will see the option to update the image.