Posts

Showing posts from July, 2018

SharePoint Interview Questions and Answers Part - One

In article, We will see SharePoint Interview Questions and Answers which will helpful to understanding SharePoint concepts. Please refer this articles: SharePoint Interview Questions and Answers - Part One SharePoint Interview Questions and Answers - Part Two SharePoint Interview Questions and Answers - Part Three This is one part of SharePoint Interview Questions and Answers: 1. What is SharePoint Site Hierarchy? ( reference link ) At the top of the hierarchy are server farms. This encompasses all the physical servers that comprise your SP installation. It may consist of one server or twenty. When you run the SP configuration wizard after installing MOSS/WSS you either create a new server farm or connect to an existing one. It’s done once. Once you have your server farm you must set up a web application. This is what creates a corresponding website in IIS to host the site. This is where it gets its application pool and other IIS properties. You can create multiple web a

Getting start with React Native

Image
React Native lets us build mobile app using only JavaScript. It uses the same designs as React, letting us compose a rich mobile UI from declarative components. I am writing this article based on those experiences which I got trouble while install in all working OS like Windows, Mac, and Linux . Initially I have started working on Mac mini which have install macOS High Sierra OS, then after few month I have been shifted towards Linux OS after struggle getting speed up work in Ubuntu 14.1 again I switch over new OS which is Windows so that’s how finally I got windows 10  to set up my React Native projects. Some of those might asked which is the best OS or platform for react native, I would personally experience and got the best is Mac OS, it’s simply because it’s easy to setup X code for I- OS development and Android Studio for Android development in that, apart from this in Linux or Windows you build react native projects which for android development but we need to export(

Get group permission list in which current user is member using JavaScript in SharePoint Online CSOM

In blog, we will see how we can get group list in which current user is member using JavaScript. Let's have example where we have few groups and we want to show current user is member of that group permissions or not. Below is JavaScript code to fetch groups of current user.  var  groups = [ 'Approve Users' ,  'Create Users' ,  'Review Users' ,  'Record Users' ,  'Initiate Users' ];   var  MemberOfGroup = "" ;   function  setUserGroups(groupName) {        if  (groupName ==  "Approve Users" ) {           MemberOfGroup +=  "Approve" ;       }  else   if  (groupName ==  "Create Users" ) {           MemberOfGroup +=  "|Create" ;       }  else   if  (groupName ==  "Review Users" ) {           MemberOfGroup +=  "|Review" ;       }  else   if  (groupName ==  "Record Users" ) {           MemberOfGroup +=  "|Record" ;       }  else   if  (group