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
Get Loggedin User Location/Country using Javascript/Jquery
Posted by Subbu on 07:44
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...
Posted in USerProfile Javascript
Tuesday, 26 May 2015
Get the Hyperlink description using CSOM in SharePoint 2010
Posted by Subbu on 07:38
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...
Posted in Hyperlink description, SharePoint 2010
Wednesday, 20 May 2015
Get the image from the custom list using JavaScript/JQuery in SahrePoint 2010 CSOM
Posted by Subbu on 10:42
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...
Posted in CSOM, custom list, Image, Javascript, SharePoint 2010
Saturday, 16 May 2015
Permission Levels in SharePoint 2010
Posted by Subbu on 21:49

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...
Posted in Permission Levels, SharePoint 2010
Tuesday, 12 May 2015
Data view Web part in SharePoint using SharePoint Designer:
Posted by Subbu on 04:48

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
Posted by Subbu on 04:53
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:
...
Posted in Permissions sharepoint
Item Level Permissions for the list in SharePoint 2010 using SharePoint Designer workflow
Posted by Subbu on 03:56

All we know that there will be the items to view only for
the respective people in the list. We can create a different view for the
users. But creating view may lead to performance issue. So to avoid, we can
make use of the SharePoint Designer. By writing the workflow we can assign
permissions to the users.
Let find out the steps how we can achieve this
functionality.
First...
Posted in Item level permissions, SharePoint 2010, SPD workflow
Friday, 8 May 2015
List of library templates available in SharePoint 2010
Posted by Subbu on 04:45
Here we can find the various library templates available in SharePoint
2010.If we know the requisite we can make use of the template to create library.
Template Name
Type
Category
Description
Asset Library
Library
Content
A place to share, browse and manage rich media assets, like image,
audio and video files.
Data connection Library
Library
...
Posted in Library templates|SharePpint2010
Subscribe to:
Posts (Atom)
SharePoint Designer 2010 available options