Home > CMS- Content Management System > Sharepoint (Page 8)

Tricks for rapid Searching of Content in Office 365/SharePoint 2013

Hello everyone, today we discuss about SharePoint search functionality, different way to search a files and tricks about searching. So lets starts... Search is one of the core feature of Office 365 or SharePoint online 2013. In SharePoint search be perform across multiple sites for quickly access things. In SharePoint 2013 search

This Article is TAGGED in , , , . Read more

How to read the version history of Multiline column from list in office 365/ SharePoint 2013 page?

Before we go through our actual goal first we discuss about SharePoint versioning. Within SharePoint list or library, you ability to add column that are type multi-line text field.  Within this column setting you have option 'Append Changes to Existing Text'. "You must first turn on versioning in this list

This Article is TAGGED in , , , , . Read more

How to write Complex CAML Query with Nested AND Conditions

1 Condition CAML query [crayon-685e37a361380545930188/] 2 Condition CAML query [crayon-685e37a361384682278930/] 3 Condition CAML query Note: We can use two conditions only with in Operator [crayon-685e37a361386179403987/] 4 Condition CAML query [crayon-685e37a361389172882143/] 5 Condition CAML query [crayon-685e37a36138b125069266/]  

This Article is TAGGED in , , . Read more

How load list item with individual column filtration in office 365/ SharePoint 2013 page?

Below I share code to apply filter option to SharePoint list using the jquery data table.  Steps: Page level Create page and add following datatable css and js.<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.12/css/jquery.dataTables.min.css" /> <script src="https://code.jquery.com/jquery-1.12.4.js" type="text/javascript"></script> <script type="text/javascript" src="https://cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js"></script> Create table with header according to SharePoint list. <div class="Filters"><div><span>ID FIlter</span><span class="idFilterOption"></span> <span>Adjustment Type FIlter</span><span class="requestFilterOption"></span></div></div> <table id="table_id" class="display"

This Article is TAGGED in . Read more

How to configure result search web part to show documents from in specific Document library?

Hello everyone, today we will discuss about how to create document search result type used to search documents from specific Document library. To implement search functionality we will use Search box web part and Search Result web part. Please follow steps below. We need to Create Result Source to create search query which

This Article is TAGGED in , , , , . Read more

How to Check the User Permissions in Office 365/SharePoint 2013 Online

Folks, ever you faced to find what kind of permission of user have on the site. SharePoint has a good identify setting where you can find user permission which have across the SharePoint site either at group level or user level. So I’ve written few simple step to determine user permission

This Article is TAGGED in , , , , . Read more

How to Set Value in URL column using SharePoint 2013 Designer Workflow

URL column type is consists of two part, one is Actual URL and second is the description for the URL. So Internally URL store the data like {Actual URL, Description}. Note there is a space after the comma and before the Description. In order to set the value in URL column using

This Article is TAGGED in , , , . Read more

Sample search term query’s of result search web part

Sample search term query's to search result through result search web part Search only document (i.e. all types but not docx type) under specific library {searchTerms} Path:"document path" AND (NOT FileType:docx) AND IsDocument:True with above query search result will not show folders.   Search in specific site only {searchTerms} Path:”site url” Example: {searchTerms} Path:"https://abc.sharepoint.com/mstest/”   Search result of

This Article is TAGGED in , . Read more