Posts

Showing posts from November, 2017

Create Custom Field Type in SharePoint

Just follow the below steps to create a custom field type Its very simple to create a custom field type in SharePoint Step 1  : Open VS and create a new SharePoint Project Step 2:  Add SharePoint mapped folder                   - Control Templates Step 3 : Add another SharePoint Mapped folder                - XML Step 4: Then create user control named " MyField.ascx " and delete the code              file of the user control                          In our ascx file, delete the links to the code behind class and finally it                should be                                   <% @ Control Language ="C#" %> Step 5 : Add the below line in the ascx file               < SharePoint : RenderingTemplate ID ="MyRenderingTemplate" runat ="server">              < Template >                   < asp : TextBox ID ="txtMyField" runat ="server" CssClass ="ms-long" />

CONFIGURE ADFS 3.0 WITH SHAREPOINT 2013

https://blogit.create.pt/miguelmoreno/2014/11/14/configure-adfs-3-0-with-sharepoint-2013/ 

SharePoint 2010 Visual Upgrade Failed

Scenario :  I have faced visual upgrade failed issue after migrated the MOSS 2007 Content database to SharePoint 2010. Error which received during visual upgrade Visual Upgrade failed . The default master page for this user interface could not be found at “ /sites/site1/_catalogs/masterpage/v4.master ”. Add the requested master page at this path and try again. Then I have done the below thing to resolve the above issue 1. Created new sub site  2. Then i downloaded the V4.master file from the new site created 3. Uploaded the v4 master into site collection master page gallery  4. Tried visual upgrade  Its working without any issue.  i hope this will helps you...