Thursday, June 11, 2015

SPEasy Form for SharePoint List customization.

Customizing list form is part of daily job. Got a new tool over internet to customize the form in a simple way.
Have a look @ http://speasyforms.com/


Sunday, May 17, 2015

How to check logs using Correlation ID in SharePoint 2013 Online environment

Recently for one of my application, got some issue and we have Correlation ID. We contact the MS support team for the reason.
Most of the issue might solve by viewing the logs.But in SP Online we can't find the root cause by our self for the problem.

Got the shocking info from them.
http://community.office365.com/en-us/f/148/t/155804.aspx

Wednesday, May 13, 2015

EIDA Toolkit demo

Got the chance to read the UAE Emirates ID data using .NET Application.

Tuesday, April 21, 2015

How to Validate Date in a SharePoint 2013 List

Got the chance to work on validation on list and list forms customization on SharePoint 2013 online.



Wednesday, April 8, 2015

Hide or show list form fields in SharePoint using jQuery

David Lozzi has written a jquery library which is useful our daily development activites.
http://davidlozzi.com/2014/01/14/sharepoint-2013-script-hide-or-disable-your-fields
ExecuteOrDelayUntilScriptLoaded(function(){
  Lozzi.Fields.disableWithAllowance("Employee Name",["LeaveEntryAuthorization"]);

  },"sp.js");
sp.js should load before execute the code.