Add the below code in the calendar view page using designer or add using script editor / content editor in the page where calendar view inserted < script src ="http://code.jquery.com/jquery-1.11.1.min.js" type ="text/javascript"></ script > < script type ="text/javascript"> $(document).ready( function () { setInterval( function () { $( "a[href*='DispForm.aspx']" ).each( function () { $( this ).attr( "onclick" , "openDialog('" + $( this ).text() + "','" + $( this ).attr( "href" ) + "')" ); $( this ).attr( "href" , "javascript:void(0)" ); $( this )....
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 lin...
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...
Form Digest Form Digest is used to insert a security validation for SharePoint pages. The digest value will be created by SharePoint server during page creation. Example: A user loads a SharePoint page. He injected a script which updates the list data. When the user posts the page, the server will check Form Digest value against the page content. Thus, security attacks can be prevented. Viewing Form Digest You can use the view-source of a SharePoint page to see the form digest value. The value is stored under name ___REQUESTDIGEST .