Thursday, 30 April 2015

InfoPath is used to generate data entry forms for both the acquisition of information as well as storage of that information. With the 2010 release, InfoPath can now be used as an alternate way to present SharePoint 2010 content within the web browser, thus enhancing the overall user experience. Using forms with workflows can help manage and enforce business processes throughout...

Tuesday, 28 April 2015

All we know SharePoint has lists/Libraries. After creating a custom list in SharePoint we have to change settings for the list.Here I am describing the settings page, as we have three types of settings for the list like General settings, Permissions and Management and Communication. In this article, we will see all the settings available in our lists in SharePoint 2010...

Sunday, 26 April 2015

Custom list view customize using XSLT: In custom list we have different types of view to display. But when we have a requirement that to show the items in 3*3 matrix mode. Then how to do it? Here we can achieve this by customize the default available XSLT in the SharePoint designer. Create a custom list with the different fields (Name, Email Id, and Mobile). Create...

Friday, 24 April 2015

All we know that every user in the SharePoint will has his/her own user profiles which will sync automatically when the user added to AD in the organization. To get this user properties we can use any approach like by writing the SOM (Serve Object Model), CSOM (Client Object Model) etc. In this post I am showing how to get this user profile properties by writing a simple...

Wednesday, 22 April 2015

In SharePoint document library we will be storing the documents.But I had a requirement that i have a document library with country field, but as i have to find out the logged in user country by querying the user profile properties of the current logged-in user and i have to show only that country documents to that user. To achieve this functionality i took help of JavaScript/J Query and Content...
Script: $(document).ready(function () { var thisUser = $().SPServices.SPGetCurrentUser(); var userLocation; $().SPServices( {     operation: "GetUserProfileByName",     async: false,     AccountName: thisUser,     completefunc: function (xData, Status)     {                  ...

Sunday, 19 April 2015

I had a requirement that to show the list in the collapsible manner(Expand/collapse by click on the + sign).I thought to use javascript/jquery, but later on i have decided to do it using SPD and make use of list settings.Here the technique. To build the ListView in the collapsible manner, Open SharePoint designer and create page            ...

Saturday, 18 April 2015

We all know that SharePoint is compatible with IE, some features will not work as expect in all browsers(chrome/Mozilla). I had a requirement from my client that they want to refresh parent page if they close the parent window(Which is working fine in IE  but not in chrome/Mozilla).since they want it in those browsers also i had a work around and finally i achieved it. <script language ="JavaScript">  ...
var spDate = $(input["DatetimeControlName"]).val(); // date value of the datetime control var curDate = new Date(); // current date var first = spDate.split("/"); split the date var todayDate = (curDate.getDate()+"/"+ (curDate.getMonth()+1) + "/" + curDate.getFullYear()); // format the current date into dd/mm/yyyy format var second = todayDate.split("/"); split the current date var DTCdate = new...