Skip to main content

Posts

Showing posts from February, 2018
Cascading Dropdown in SharePoint List using Infopath Forms/ REST Cascading Drop Down Lists in SharePoint / Office 365 using REST http://www.markrackley.net/2014/05/20/cascading-drop-down-lists-in-sharepoint-office-365-using-rest/ #Read more from source and copied from  http://www.sharepointdiary.com/2015/11/cascading-dropdown-using-infopath-forms-in-sharepoint-list.html#ixzz57m2lQArA Cascading Dropdown in SharePoint List using Infopath Forms What is Cascading drop downs? Well, Cascading drop downs are linked drop down controls where the content of the second drop down depends on the selection of the first one. E.g. When you Choose Country in the first drop down, the second drop down State is automatically filtered to the list of states actually in that county. Cascading drop downs are quite a common requirement and unfortunately, SharePoint doesn't support it Out of the box. In this article, I'm documenting the implementation of cascading drop down functi
Remove item from ECB in SharePoint 2013 or Remove Delete item in Edit Control Block Solutions 1) If you simply want to hide, use the following CSS by adding in script web part   2) Java script ( not tested) source https://sharepoint.stackexchange.com/questions/114587/remove-item-from-ecb-in-sharepoint-2013 Related  links https://social.technet.microsoft.com/Forums/Lync/en-US/e91554ed-d057-4185-b1e7-e924f6eb79a4/how-to-hide-the-delete-item-option-from-the-list-item-menu-in-sharepoint-2010?forum=sharepointgeneralprevious http://www.learningsharepoint.com/2013/05/09/sharepoint-2013-callout-popup-tutorial/ https://docs.microsoft.com/en-us/sharepoint/dev/spfx/extensions/guidance/migrate-from-ecb-to-spfx-extensions http://www.learningsharepoint.com/2013/05/18/hide-callouts-in-a-sharepoint-2013-task-list/
How SharePoint Declares Items as a Record Title Hold and Record Status Internal Name _vti_ItemHoldRecordStatus GUID 3AFCC5C7-C6EF-44f8-9479-3561D72F9E8E Microsoft.SharePoint.Publishing.FieldId HoldRecordStatus Hidden True Type Double Normal record Empty, or 0 Hold 4353 Record 273 Another column that’s used in this process is: Title Declared Record Internal Name _vti_ItemDeclaredRecord GUID f9a44731-84eb-43a4-9973-cd2953ad8646 Microsoft.SharePoint.Publishing.FieldId DeclaredRecord Hidden False Type DateTime Source site URL http://blog.randomdust.com/2011/11/how-sharepoint-declares-items-as-a-record/
LIST OF INTERNAL NAMES FOR SHAREPOINT FIELDS Title InternalName $Resources:RulesUrl $Resources:XomlUrl % Complete About Me Account Action Actual Work Address All Day Event Allow writers to view cached content Anniversary Append-Only Comments Approval Status Approver Comments Article Date Assigned To Assistant’s Name Assistant’s Phone Associated Content Type Associated Service Attachments Author Automatic Update Base Association Guid Billing Information Birthday Body Body Body Was Expanded Business Phone Business Phone 2 Byline Cacheability Callback Number Car Phone Categories Category Category Category Check for Changes Check In Comment Checked out User Children’s Names City Comments Comments Company Company Main Phone Company Phonetic Completed Computer Network Name Connection Type Contact Contact E-Mail Address Contact Name Contact Photo Contact Picture Content Category Content Type Content Type ID Content Type ID C
How to hide/disable  sharePoint list drop down , text  Term field in SharePoint Edit form using Jquery To hide drop down/term store field Note:  Refer jquery in the beginning $(document).ready(function(){     $('td').each(function(){         if($(this).find('nobr').text() === 'UserName) {             $(this).closest('tr').hide();         }     });       //Disable Text box / Drop down       $("select[title$='Address']").attr('disabled', 'disabled');        // Hide  Text box      $("input[title='Userid']").closest("tr").hide(); }); // Hide  Dropdown list $('nobr:contains("OtherCity")').closest('tr').hide(); Source https://blog.devoworx.net/2016/03/19/show-hide-fields-based-on-choice-field-selection-using-jquery-in-sharepoint/
How to display SharePoint list item status values into images/icons using simple JavaScript src="http://code.jquery.com/jquery-latest.min.js" $(document).ready(   function() {     $('td.ms-vb2:contains("Completed"), ' +       'td.ms-vb2:contains("Pending")').each(         function() {           $(this).hide();           $(this).html(ReplaceColorTextWithImage($(this).html()));           $(this).show("slow");         }     );   } ); function ReplaceColorTextWithImage(strColorText) {   var strColorImage = "";   switch(strColorText) {     case "Completed":       strColorImage = "green";       break;     case "Not Started":       strColorImage = "Red";       break;   }  return " " }  return "$ $ >"; Credit /Source http://www.dalesandro.net/replace-text-with-images-in-sharepoint-view-using-jquery/ Using