Using property restrictions in your KQL queries, you can restrict your search to only pull back certain things like calendar events for instance. This is a very powerful way to limit search results and get exactly what you are looking for. You can use these in your query like this: " lunch contentclass:STS_ListItem_Events " This will return only calendar events with the word "lunch" in them. Pretty powerful and pretty simple. Here is a list of available content class items: STS_Site – Site Collection STS_Web – Site (Web) STS_List_850 – Page Library STS_ListItem_850 – Page STS_List_DocumentLibrary – Document Library STS_ListItem_DocumentLibrary – Document Library Items STS_List – Custom List STS_ListItem – Custom List Item STS_List_Links – Links List STS_ListItem_Links – Links List Item STS_List_Tasks – Tasks List ...
SharePoint SPFx Introduction What is SPFx? 1. SPFx is SharePoint Framework Extension which was newly introduced in SharePoint 2016 Online. 2. SPFx is introduced on replacement of SharePoint Visual Web Parts (SP Visual Web Parts can't be deployed to SharePoint Online). 3. In SPFx we can 3 types of solutions like Web Part, Extensions and Library . Why SPFx? 1. The world is moving more and more towards client-side development. No matter how good the back-end architecture is, what the user gets to see is user interface. If the user doesn't feel a smooth and lag free experience, user would certainly complain. 2. With these advancements in technologies, SharePoint has decided to focus more towards improving the user experience with the product. So, this opens a world of endless possibilities for developers working with SharePoint. This means Microsoft SharePoint now has full support for open source tool chain. Configuring Development Environ...
I ran into a strange issue today when using the SharePoint 2013 REST API for Lists with Managed Metadata columns but I just had a ‘clever workaround’ moment with SharePoint’s oData/REST implementation when it comes to filtering list items based on taxonomy (managed metadata) columns. Now I do not consider myself a developer, so this article is probably a little verbose for some readers, but should be helpful to power users or IT pros. 1. To filter the Taxonomy columns in SharePoint list using Rest API call we need to use the Post method. 2. The Rest API call will give errors some times when the Rest API Query string crosses limit 260 characters that time we will use the Query in the body. Those things are clearly explained in the below example clearly. 3. WE can use the CAMEL Query in the Rest API call this example come under that. < script src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" ></ script > < scri...
Comments
Post a Comment