SharePoint Content Collaboration Now In Microsoft Teams
Microsoft SharePoint and Teams are the two highly-preferred enterprise collaboration offerings by Microsoft for organizations around the globe. Over the last twelve months, Microsoft Teams has become the most widely used enterprise collaboration because of the amazing functionality, but more importantly for its simplicity. Known for making collaboration a breeze, […]
How Migrating to SharePoint Online Can Help Your Organization
Microsoft has been revolutionizing how businesses operate for the past 30+ years. In the beginning, we had the Office Suite that transformed the entire documentation and record-maintaining process. And if digitizing paperwork was not enough to blow one’s mind, the tech giant introduced the Enterprise Collaboration Solution called SharePoint which […]
Display rating control in xslt list view webpart after migration from SP2010 to SP2013
Make sure you have Ratings setting enabled in your list/ library. As the rating field is not shown properly; Add below link for XSLT; <xsl:include href=”/_layouts/15/xsl/blog.xsl”/> <xsl:include href=”/_layouts/15/xsl/internal.xsl”/> <xsl:include href=”/_layouts/15/xsl/fldtypes_Ratings.xsl”/> Add below code for Rating; <xsl:call-template name=”emit_RatingsInitialization”/> <xsl:apply-templates select=”$Fields[@Name=’AverageRating’]” mode=”PrintField”> <xsl:with-param name=”thisNode” select=”$thisNode”/> <xsl:with-param name=”Position” select=”$Position”/> […]
While migrating solutions and scripts from SP2010 to SP2013 “_spUserId” doesn’t work
When migrating solutions from and script from SharePoint 2010 to 2013, we ran into some weird error where we could not fetch the current logged in user with “_spUserId” anymore. var user = _spUserId As a workaround we used below; var user = currentWeb.get_currentUser();
SharePoint 2013 BreadCrumb On Master Page
Let’s bring the breadcrumb back to SharePoint 2013! By default SharePoint 2013 design manager doesn’t have a breadcrumb snippet . If you are going to build master page for sharepoint 2013 and wants breadcrumb in your master page, this was a very helpful feature to navigate back in your site […]