Thursday, 27 August 2015

As SharePoint developers, we can get the chance to write the workflows for the business needs. As we have lot of options to deal with workflows. We also have the option to write these workflows using SharePoint designer (SPD). So let’s have a look what are the available options (Actions, conditions, etc.). The following features are available in the SharePoint 2010 Workflow platform: ·         Actions: o   ...

Monday, 22 June 2015

As we are all SharePoint developers , we might get the requirement to get the user country who logged in to the site. We all know that SharePoint having the user profile data in AD. It has properties of the user like name, country,email, etc., Here i am posting now that how we can query the User Profile of the SharePoint to get the Country name of the logged-in user. Refer the below Code: This...

Tuesday, 26 May 2015

We can store the hyperlinks in the list by creating hyperlink data type, but we will be giving the URL while store into list along with the description. When you try to access the URL using CSOM we will get the URL instead of the description To get the description using CSOM here we find the way to get it. clientContext = new SP.ClientContext.get_current(); var vList = clientContext.get_web().get_lists().getByTitle("your...

Wednesday, 20 May 2015

We can store the images in the list, but we will be giving the URL of the image while store into list. When you try to access the image using CSOM we will get the URL instead of the image. To get the image using CSOM here we find the path to get it. clientContext = new SP.ClientContext.get_current(); var vList = clientContext.get_web().get_lists().getByTitle("your listname"); var camlQuery...

Saturday, 16 May 2015

Permission Levels in SharePoint 2010

In SharePoint 2010, we will be having the different permission levels like list level, site level The below tables will illustrate the permission level and little description. List Permissions: Permission Level Description Manage Lists Create and delete lists, add or remove columns in a list, and add or remove public views of a list Override...

Tuesday, 12 May 2015

Data View Web Part: A Data view is a customizable view of data source(list), and it can be used to display data or write back data to a data source. To create a data view web part , please follow the steps below: Open the site in SharePoint Designer or Open the site and from the site actions click on Edit site in SharePoint Designer. Then Open the page if you...

Monday, 11 May 2015

Permission levels in SharePoint 2010

SharePoint has have default permission level in it where we can make use of those permissions for the security purpose. You can find these permission levels inside SharePoint by navigate to site settings page. Site Actions --> Site Settings --> Users and Permissions --> Site Permissions From the ribbon click on the permission levels you will find the permission levels Here the details: ...